增加清除小程序缓存的API
parent
8bfa4fe80c
commit
a24da10bff
|
@ -0,0 +1,16 @@
|
||||||
|
//
|
||||||
|
// MOP_removeUsedApplet.h
|
||||||
|
// mop
|
||||||
|
//
|
||||||
|
// Created by EDY on 2021/9/3.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MOPBaseApi.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
@interface MOP_removeUsedApplet : MOPBaseApi
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
|
@ -0,0 +1,24 @@
|
||||||
|
//
|
||||||
|
// MOP_removeUsedApplet.m
|
||||||
|
// mop
|
||||||
|
//
|
||||||
|
// Created by EDY on 2021/9/3.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MOP_removeUsedApplet.h"
|
||||||
|
|
||||||
|
@implementation MOP_removeUsedApplet
|
||||||
|
|
||||||
|
- (void)setupApiWithSuccess:(void (^)(NSDictionary<NSString *,id> * _Nonnull))success failure:(void (^)(id _Nullable))failure cancel:(void (^)(void))cancel
|
||||||
|
{
|
||||||
|
NSLog(@"begin");
|
||||||
|
if (!self.param || !self.param[@"appId"]) {
|
||||||
|
NSLog(@"removeUsedApplet失败打印");
|
||||||
|
failure(@{@"errMsg": @"removeUsedApplet:fail 2"});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
[[FATClient sharedClient] removeAppletFromLocalCache:self.param[@"appId"]];
|
||||||
|
NSLog(@"removeUsedApplet成功回调");
|
||||||
|
success(@{});
|
||||||
|
}
|
||||||
|
@end
|
Loading…
Reference in New Issue