标签: json
我认为\s表示空格。但是,当我通过JSON运行它时会解析为':
\s
JSON.parse('["and you can\'t escape thi\s"]') >>>["and you can't escape this"]
在JSON中表示什么?
答案 0 :(得分:0)
这应该有所帮助。 json string decoding encountering invalid escape \ s在JSON中根本不是有效的转义序列。没有更多的背景,很难提供任何进一步的解释。