Python 和 JSON 数组

发布于 2024-12-13 19:07:06 字数 363 浏览 0 评论 0原文

我在使用 Python (Django) 框架时遇到问题。我首先尝试将 Javascript 数组直接发送到 Django,但它只提取最后一个值。所以我现在使用 JSON.stringify 将 JSON 发送到 Python。

在Python中,它看起来像这样

QueryDict: {u'[{"key:":"interface.dns","value:":192.168.0.1"}]':[u'']}

,如果我添加更多值,它只会添加到第一个U。我怎样才能使它成为一个循环。

例如,对于字典中的每个键值显示它。因为它接缝 JSON 存储在字典中的第一个位置。

任何想法

I am having problems with Python (Django) Framework. I at first attempted to send a Javascript Array straight to Django except it pulled only the last value. So I use now JSON.stringify which sends my JSON to Python.

At Python it looks like this

QueryDict: {u'[{"key:":"interface.dns","value:":192.168.0.1"}]':[u'']}

And if I add more values it just adds to the first U. How can I make this so its a loop.

e.g for each key value in the dictionary display it. Because it seams the JSON is being stored at position one in the Dictionary.

Any Ideas

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

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

发布评论

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

评论(2

猥︴琐丶欲为 2024-12-20 19:07:06

QueryDict 对象实现文件接口。因此,您可以使用标准 JSON 库简单地解码 JSON:

import json
...
parsed_json = json.load(request.POST) # Or GET, depends on what you are using

QueryDict objects implement the file interface. So you could decode the JSON simply with the standard JSON library:

import json
...
parsed_json = json.load(request.POST) # Or GET, depends on what you are using
轻拂→两袖风尘 2024-12-20 19:07:06

您可以使用 Djangos json 反序列化器:

data = request.POST.keys()[0]
for obj in serializers.deserialize("json", data):
    do_something_with(obj)

阅读更多。

看来您的 json 作为键而不是 POST(或 GET)请求中的值发送。这可以工作,但按照惯例,它应该位于值部分。

You can use Djangos json deserializer:

data = request.POST.keys()[0]
for obj in serializers.deserialize("json", data):
    do_something_with(obj)

Read more.

It seems that your json is sent as a key instead of a value in the POST (or GET) request. This can work but for convention it should be in the value part.

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