jQuery 能否安全地评估对 HTTP POST 的 JSON 响应?

发布于 2024-07-27 20:42:49 字数 62 浏览 4 评论 0原文

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

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

发布评论

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

评论(2

蓝天白云 2024-08-03 20:42:49

您可以更改 $.post 上的 type 参数功能:

$.postJSON = function(url, data, callback) {
    $.post(url, data, callback, "json");
};

You can change the type parameter on the $.post function:

$.postJSON = function(url, data, callback) {
    $.post(url, data, callback, "json");
};
温柔嚣张 2024-08-03 20:42:49

jQuery 的 JSON eval 被认为是安全的,并且它们的 $.getJSON 方法似乎运行良好。 您所要做的就是将“json”参数传递给 $.post,它会自动解析 JSON。 就像这样:

$.post(url, data, callback, "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:

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