iPhone 4 在 Web 视图中将 JSON 字符串传递给 Javascript
我知道这在 Java 中可以通过 Javascript 处理程序实现:
graphView.addJavascriptInterface(handler, "javahandler");
graphView.loadUrl("file:///android_asset/html/show_data_from_file.html");
JSONObject json = new JSONObject();
json.put("data", jsonArray);
json.put("label","labelString");
handler.json = json;
在 javascript 页面中,“javahandler”将具有“json”对象,我可以获取要在页面上显示的数据数组和标签。
iOS 有类似的东西吗?我对使用 iO 进行网络编程非常陌生,非常感谢您的帮助!
I know this is possible in Java with Javascript handler :
graphView.addJavascriptInterface(handler, "javahandler");
graphView.loadUrl("file:///android_asset/html/show_data_from_file.html");
JSONObject json = new JSONObject();
json.put("data", jsonArray);
json.put("label","labelString");
handler.json = json;
Within the javascript page, the "javahandler" would have "json" object, which I can get the data array and the label to display on the page.
Is there something similar for iOS? I'm very new to web programming with iOs, and would appreciate your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 stringByEvaluatingJavascriptFromString 调用 javascript 方法并通过该方法传递 JSON 字符串,
You can use stringByEvaluatingJavascriptFromString to call a javascript method and pass your JSON string through that method,