2018-06-22

2018-06-22  本文已影响6人  王家小雷

客户端与web交互的几种方法

1.web端通知客户端

// if (str.length>0) {
//
// }
if (dict.count>0) {
NSString *url=[NSString stringWithFormat:@"%@",dict[@"url"]];
NSString *title=[NSString stringWithFormat:@"%@",dict[@"title"]];
}
NSLog(@"H5 log : %@", msg);
};
contentJS[@"console"][@"warn"] = ^(JSValue * msg) {
NSLog(@"H5 warn : %@", msg);
};
contentJS[@"console"][@"error"] = ^(JSValue * msg) {
NSLog(@"H5 error : %@", msg);
};
contentJS[@"openBIWin"] = ^() {

            NSArray *thisArr = [JSContext currentArguments];
    
            for (JSValue *jsValue in thisArr) {
    
                NSLog(@"=======%@",jsValue);
    
            }
  
    NSLog(@"js调用oc---------The End-------");
};

}

2.客户端回调传给web端

[webView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"utils.callFunc('%@')",stingCallBack]];
[webView stringByEvaluatingJavaScriptFromString:[@"" stringByAppendingFormat:@"webView.retValue="%@";", retValue]];

上一篇 下一篇

猜你喜欢

热点阅读