Loading a page returned by a remote server in webview in android, can the js in this page interact with android local code?
淡淡烟草味2017-05-18 10:53:34
android: This is achieved by directly injecting native js code into the webview page and using the addJavascriptInterface method.
ios: ios UIWebView itself has the stringByEvaluatingJavaScriptFromString method implementation, which returns the execution result of the js script
世界只因有你2017-05-18 10:53:34
The js in the webview page can call each other with Android's local java. The implementation method is slightly different for different Android versions. You can search for the specific topic. There are many examples.
某草草2017-05-18 10:53:34
It shouldn’t be possible, just imagine, your App
打开任意url
都可以对其注入JS
代码,那还有什么安全可言?
调用Web支付接口
的时候,顺便把Cookie、Session
什么的往自己服务器上发一份?
虽然Chrome插件
can do this[/squinting smile].