美文网首页codeER.tec
ios如何在打印web(h5)端日志

ios如何在打印web(h5)端日志

作者: 雷霆嘎巴嘎嘎 | 来源:发表于2018-05-21 10:25 被阅读18次
- (void)catchJsLog{
  if(DEBUG){
    JSContext *ctx = [self.webView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"];
    ctx[@"console"][@"log"] = ^(JSValue * msg) {
        NSLog(@"H5  log : %@", msg);
    };
    ctx[@"console"][@"warn"] = ^(JSValue * msg) {
        NSLog(@"H5  warn : %@", msg);
    };
    ctx[@"console"][@"error"] = ^(JSValue * msg) {
        NSLog(@"H5  error : %@", msg);
    };
}
}

放在viewdidload里加载即可,简单粗暴

相关文章

网友评论

    本文标题:ios如何在打印web(h5)端日志

    本文链接:https://www.haomeiwen.com/subject/vhcfjftx.html