Python 和 JSON 数组
我在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
QueryDict
对象实现文件接口。因此,您可以使用标准 JSON 库简单地解码 JSON:QueryDict
objects implement the file interface. So you could decode the JSON simply with the standard JSON library:您可以使用 Djangos json 反序列化器:
阅读更多。
看来您的 json 作为键而不是 POST(或 GET)请求中的值发送。这可以工作,但按照惯例,它应该位于值部分。
You can use Djangos json deserializer:
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.