iPhone 4 在 Web 视图中将 JSON 字符串传递给 Javascript

发布于 2024-12-09 07:08:17 字数 464 浏览 1 评论 0原文

我知道这在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筱果果 2024-12-16 07:08:17

您可以使用 stringByEvaluatingJavascriptFromString 调用 javascript 方法并通过该方法传递 JSON 字符串,

[yourWebViewInstance stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"useThisJSONString(%@)", JSONString]];

You can use stringByEvaluatingJavascriptFromString to call a javascript method and pass your JSON string through that method,

[yourWebViewInstance stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"useThisJSONString(%@)", JSONString]];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文