为什么 jQuery.getJSON() 会扁平化我的 javascript 字典?

发布于 2025-01-05 23:22:47 字数 519 浏览 1 评论 0原文

我在通过 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 技术交流群。

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

发布评论

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

评论(1

傲鸠 2025-01-12 23:22:47

数据发送方式正确。

数据字段旨在是通过 HTTP 发送的数据。如果您通过 HTTP get 发送该信息,您将在查询字符串中看到参数。

myurl?a=1&b%5Bc%5D=2&b%5Bd%5D=3

未转义的 URL:

myurl?a=1&b[c]=2&b[d]=3

如果要将 JSON 发送到服务器,则需要对其进行字符串化。使用 JSON.stringify() 您将需要包含一个 JSON 库以支持 IE8 之前的版本。

您需要将字符串化数据分配给变量。

jQuery.getJSON("myurl",{data: JSON.stringify(data)}, callback);

这将通过一个名为 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.

myurl?a=1&b%5Bc%5D=2&b%5Bd%5D=3

Unescaped URL:

myurl?a=1&b[c]=2&b[d]=3

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.

jQuery.getJSON("myurl",{data: JSON.stringify(data)}, callback);

This will be passed to your server in a variable called data.

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