在黑莓中的字段中显示 HTML 内容

发布于 2024-08-03 06:21:13 字数 75 浏览 7 评论 0原文

我从服务器收到 JSON 响应。在该 JSON 字符串中,我有需要在字段中显示的 HTML 内容。

任何人都可以帮忙吗?

I am getting JSON response from the server..Inside that JSON string i am having HTML content which i need to display in a field..

Can anyone help..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

廻憶裏菂餘溫 2024-08-10 06:21:13

您可以评估 JSON 响应,不过为了提高安全性,添加 JSON 解析支持< /a> 相当简单,尝试 json2.js图书馆。然后只需使用普通的 JS 表示法来提取 HTML 字符串并将其插入到文本字段中。

请注意:

  1. Blackberry 浏览器不支持 XMLHttpRequest 直到4.6,例如 Curve 8310 不支持。
  2. 默认情况下,Blackberry 浏览器上不启用 Javascript,如果您有公司设置,则可以通过 MDS 策略规则
  3. 如果您已涵盖上述两条,请小心使用 Javascript 库,因为您可以轻松地简单地解释它们(使用少于 300k 的 JS IMX)耗尽设备内存

You can just eval the JSON response, though for better security adding JSON parsing support is fairly simple, try the json2.js library. Then just use normal JS notation to extract your HTML string and insert it into your text field.

Note that:

  1. The Blackberry browser didn't support XMLHttpRequest until 4.6, for example the Curve 8310 does not support it.
  2. Javascript is not enabled by default on the Blackberry browser, if you have corporate setup you can enable it through an MDS policy rule
  3. If you've got the above two covered, be careful with Javascript libraries as you can easily exhaust the device memory simply interpreting them (with less than 300k of JS IMX)
夏了南城 2024-08-10 06:21:13

有关如何显示 HTML 内容的更多详细信息,请参阅此问题在 BlackBerry 字段中,使用 V4.5.0 BrowserContent 类。

See this question for more detail on how to display HTML content in a BlackBerry field by using a V4.5.0 BrowserContent class.

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