为什么 jQuery.getJSON() 会扁平化我的 javascript 字典?
我在通过 jQuery.getJSON() 方法将 javascript 字典传输到我的服务器时遇到了一个大问题。我在 jscript 中声明了这个字典:
data = {'a': 1, b:{'c':2, 'd':3}};
当我调用时:
jQuery.getJSON("myurl", data, callback)
服务器接收到具有以下值的字典:
{'a':1, 'b[c]':2, 'b[d]':3}.
请注意,通过将“b”键与子键“c”和“d”组合来展平子字典。对于高度嵌套的数据来说,这是非常令人讨厌的。
我承认我不确定这是否是 javascript 和 JSON 序列化的问题,或者是否与 Python 和 Pyramid(接收数据的 Web 框架)有关。我在发送数据之前尝试过字符串化以及使用 Python 的 json 库对其进行反序列化,但我只收到错误。
有什么帮助吗?
I'm having a big issue with transmitting a javascript dictionary via the jQuery.getJSON() method to my server. I have this dictionary declared in jscript:
data = {'a': 1, b:{'c':2, 'd':3}};
When I call:
jQuery.getJSON("myurl", data, callback)
the server receives a dictionary with these values:
{'a':1, 'b[c]':2, 'b[d]':3}.
Notice that the sub-dictionary was flattened by combining the 'b' key with the subkeys 'c' and 'd'. This is incredibly obnoxious for highly nested data.
I admit I'm not sure if this is an issue with javascript and JSON serializing or if it has to with Python and Pyramid, the web framework which receives the data. I've tried stringifying before sending the data as well as using Python's json library to deserialize it, but I only get errors.
Any help, please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
数据发送方式正确。
数据字段旨在是通过 HTTP 发送的数据。如果您通过 HTTP get 发送该信息,您将在查询字符串中看到参数。
未转义的 URL:
如果要将 JSON 发送到服务器,则需要对其进行字符串化。使用 JSON.stringify() 您将需要包含一个 JSON 库以支持 IE8 之前的版本。
您需要将字符串化数据分配给变量。
这将通过一个名为
data
的变量传递到您的服务器。The way the data is sent is correct.
The data field is intended to be data to be sent via HTTP. If you send that via an HTTP get, you will see the parameters in the query string.
Unescaped URL:
If you want to send JSON to the server, you will need to stringify it. with JSON.stringify() You will need to include a JSON library for pre-IE8 support.
You need to assign the stringified data to a variable.
This will be passed to your server in a variable called
data
.