jQuery 能否安全地评估对 HTTP POST 的 JSON 响应?
我在 jQuery 文档中找不到是否有任何 AJAX 方法可以安全地评估对 $.post 的 JSON 响应。
I couldn't find in the jQuery document if any of its AJAX methods SAFELY evaluates a JSON response to a $.post.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以更改 $.post 上的
type
参数功能:You can change the
type
parameter on the $.post function:jQuery 的 JSON eval 被认为是安全的,并且它们的 $.getJSON 方法似乎运行良好。 您所要做的就是将“json”参数传递给 $.post,它会自动解析 JSON。 就像这样:
jQuery's JSON eval is supposedly safe, and their $.getJSON method seems to work well. All you have to do is pass the "json" parameter to the $.post and it'll automatically parse the JSON. Like so: