29,049
社区成员




@property (nonatomic,weak) JSContext *jsContext;
-(void)webViewDidFinishLoad:(UIWebView *)webView{
__weak typeof(self) weakSelf = self;
self.jsContext[@"DsJsBridge"] = weakSelf;
self.jsContext.exceptionHandler = ^(JSContext *context, JSValue *exceptionValue) {
context.exception = exceptionValue;
NSLog(@"异常信息:%@", exceptionValue);
};
}