为什么 jQuery 中没有序列化为 JSON?
嗨,几天前,我不得不通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常你不传递 JSON,但你序列化你的数据,因此
.serialize()
它通常是服务器发送 json...而不是客户端。最好的方法是序列化对象。
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.