一起使用 JSON 和 Ajax
我从未将 Ajax 与 JSON 一起使用过。有什么好的资源可以看吗?
I have never used Ajax with JSON. Are there any good resources to look upon?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我从未将 Ajax 与 JSON 一起使用过。有什么好的资源可以看吗?
I have never used Ajax with JSON. Are there any good resources to look upon?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
将 Ajax 视为一种通过服务器发送和接收文本内容的方式。您来回发送的消息的格式由您决定。您可以使用 JSON、XML、YAML、CSV,或您想要的任何其他内容。
如果您将这两个问题分开,您的问题应该更容易解决。
如果您使用 JavaScript 框架,例如 jQuery 或 Prototype,这两件事都会为您无缝处理及其 Ajax API。
Think of Ajax as a way to send and receive textual content with the server. The format of the messages you send back and forth is up to you. You could use JSON, XML, YAML, CSV, or whatever else you want.
If you separate these two concerns your problem should be a lot easier to approach.
If you use a JavaScript framework, like jQuery or Prototype, both of these things will be handled for you pretty seamlessly with their Ajax APIs.