如何正确转义 json 以通过 ajax 发送? (使用数据表)

发布于 2024-09-24 20:53:51 字数 223 浏览 4 评论 0原文

我想知道如何正确转义我的 json 代码。我正在使用数据表插件,这是失败的 json。

        "6\\\\\\\' 5\\\\\\\" Ford HD ",

它最初看起来像这样(没有左/右括号和逗号):

         6\\\' 5\\\" Ford HD 

我如何正确地转义这个?

I would like to know how to properly escape my json code. I am using the datatables plugin and this is the json that is failing.

        "6\\\\\\\' 5\\\\\\\" Ford HD ",

It originally looks like this (without the opening/closing brackets and the comma):

         6\\\' 5\\\" Ford HD 

How would I properly escape this?

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

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

发布评论

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

评论(1

怀里藏娇 2024-10-01 20:53:51

您不应该转义 ' 字符。因此,正确的 JSON 将是

"6\\\\\\' 5\\\\\\\" Ford HD "

您可以验证数据的好地方是 http://www.jsonlint.com/。

You should not escape the ' character. So the correct JSON will be

"6\\\\\\' 5\\\\\\\" Ford HD "

A good place where you can validate your data is http://www.jsonlint.com/.

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