安卓
在app页面中代码是这样定义的方法:
image.png
app中调用方法:
image.png
想在app中插入h5页面,应该写入:
window.YaChang.onSumResult(JSON.stringify(json))
ios
h5调用ios方法
sendIOSuserToken(json){
try {
//使用此方法,会报错,因此使用try-catch
window.webkit.messageHandlers.sendJson.postMessage(JSON.stringify(json));
} catch(error) {
console.log('WKWebView post message');
}
},
网友评论