为什么 jQuery 中没有序列化为 JSON?

发布于 2024-11-06 18:57:31 字数 175 浏览 1 评论 0原文

嗨,几天前,我不得不通过 ajax 将 js 对象发布到服务器,我发现无法使用 jQuery 将对象转换为 JSON。

所以这实际上是一个由两部分组成的问题: 1. 为什么 jQuery 中不包含 toJSON() 方法; 2. 将 js 对象发布到服务器的最佳方法是什么?

干杯,

Hi a couple of days ago I had to post a js object to the server via ajax and I discovered there was no way to convert an object to JSON using jQuery.

So it's really a two part question:
1. Why is a toJSON() method not included in jQuery and 2. what is the best way to post a js object to the server?

Cheers,

Joe

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

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

发布评论

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

评论(1

我早已燃尽 2024-11-13 18:57:31

通常你不传递 JSON,但你序列化你的数据,因此 .serialize() 它通常是服务器发送 json...而不是客户端。

最好的方法是序列化对象。

http://api.jquery.com/serialize/

normally you dont pass JSON but you serialize your data, hence the .serialize() it's normally the server that sends json... not the client.

the best way is to serialize the object.

http://api.jquery.com/serialize/

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