我用
发布前
const str = JSON.stringify(obj);
// The value of str is shown in the following image.
POST后到服务器并获取数据
const str2 = fetchStrFromServer();
// value of str2 is shown in the following image.
const obj2 = JSON.parse(str2);
这会引发意外的令牌错误。
我在线搜索,似乎需要在发布到服务器之前转义新线令牌。
还有其他角色需要转义吗? 是否有任何库可以为此场景执行转义?
注意:所有图片都是Chrome控制台中的截图。