var jsn=getAttr(ref,"json-data").toString();
console.log(jsn); //{test: true,stringtest:"hallo"}. it's OK.
JSON.parse(jsn); //Uncaught SyntaxError: Unexpected token s, line: line with JSON.parse;
我认为JSON.parse
这些数据有问题。我试图删除stringtest:"hallo"
- 没有结果... PS:我也认为我做错了什么然后我问了这个问题
我第一次尝试JSON.parse("{"+jsn+"}");
。