Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何正确地转义我的 json 代码。我正在使用数据表插件,这是失败的 json。
"6\\\\\\\' 5\\\\\\\" Ford HD ",
它最初看起来像这样(没有左/右括号和逗号):
6\\\' 5\\\" Ford HD
我将如何正确逃避这一点?
您不应该转义 ' 字符。所以正确的 JSON 将是
"6\\\\\\' 5\\\\\\\" Ford HD "
一个可以验证数据的好地方是http://www.jsonlint.com/。