如何正确转义 json 以通过 ajax 发送? (使用数据表)
我想知道如何正确转义我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应该转义 ' 字符。因此,正确的 JSON 将是
您可以验证数据的好地方是 http://www.jsonlint.com/。
You should not escape the ' character. So the correct JSON will be
A good place where you can validate your data is http://www.jsonlint.com/.