如何在谷歌应用程序引擎中使用 json 模块?

发布于 2024-08-26 09:43:25 字数 269 浏览 5 评论 0原文

可能的重复:
如何在 Google App Engine 中解析 JSON?

python 2.6 中添加了 json 模块,但 GAE 仅支持 2.5。

我怎样才能在那里使用它?

Possible Duplicate:
How can I parse JSON in Google App Engine?

json module was added in python 2.6 but GAE supports 2.5 only.

How can I use it there?

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

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

发布评论

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

评论(3

豆芽 2024-09-02 09:43:25

好吧,你不能使用标准的 python 库,你必须使用一些第三方库,例如

至少 simplejson 适用于 python 2.4

Well you wotn be able to use the standard python library, you will have to use some third party lib such as

At least simplejson works on python 2.4

我们的影子 2024-09-02 09:43:25

您可以尝试使用 yaml 模块(包含在 GAE 中)作为 JSON 解析器。最近版本中的 YAML 是 JSON 的超集。

>>> import yaml
>>> yaml.load('[false, null, {"x": 1}]')
[False, None, {'x': 1}]

You can try using yaml module (which is included in GAE) as JSON parser. YAML in recent version is superset of JSON.

>>> import yaml
>>> yaml.load('[false, null, {"x": 1}]')
[False, None, {'x': 1}]
榆西 2024-09-02 09:43:25

您可以尝试使用 django.utils.simplejson

You can try using django.utils.simplejson

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