语法错误js对象到json

时间:2015-11-20 13:29:26

标签: javascript json backbone.js

您好我在这里使用Backbone我有一个问题,我的历史记录'属性将是

history = history + ' * ' + 'Attribute "used" modified from ' + !this.changed.used + ' to ' + this.changed.used + ' by ' + LOGGED_USER.get("fisrtName") + " " + LOGGED_USER.get("name") + ' the ' + (new Date());

但是当我做的时候

this.set("history", history);
var json = JSON.stringify(this.toJSON())

返回的json被\

破坏了

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

由于"需要在字符串中进行转义,因此

{ "key" : "I am \"valid\"" }