Android 的 addJavascriptInterface 在 iOS 中等效
您可能知道,Android 的 WebView 有一个名为 addJavascriptInterface()
的方法,它将 Android JAVA 对象导入到 Javascript 上下文。
问题是,iOS 上有类似的东西吗?
As you may know, Android's WebView has a method named addJavascriptInterface()
which imports an Android JAVA object to Javascript context.
the question is, Is there any equivalent of it on iOS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
iOS 上的 UIWebView 没有向 DOM 添加界面的方法。
但您仍然可以通过 javascript 与代码对话,将某些内容分配给
window.location
并在webView:shouldStartLoadWithRequest:navigationType:
委托方法中处理该请求。UIWebView on iOS doesn't have methods to add interface to DOM.
But you still can talk to your code from javascript assigning something to
window.location
and handling that request inwebView:shouldStartLoadWithRequest:navigationType:
delegate method.我知道这个问题确实很老了,但现在似乎有更好的方法使用
WKWebView
来做到这一点。请参阅此答案:https://stackoverflow.com/a/37373745/1417922I know this question is really old, but it seems that there is a better way to do it now with a
WKWebView
. See this answer: https://stackoverflow.com/a/37373745/1417922