我认为这可能是创建 JSON 字符串的非常规方式。但是,我真的需要像这样在“Sequel Pro”中做到这一点
我希望能够像那样编辑它。但是当我在客户端收到字符串,然后尝试在其上使用 as3 JSON.parse 函数时,它会出现错误......"SyntaxError: Error #1132: Invalid JSON parse input."
private function storyTextCallBack(r:Object):void
{
//storyText is an 'Object'
storyText = JSON.parse(r.text);
}
但这就是我的客户实际得到它的方式,我认为这就是破坏 JSON.parse 函数的原因.....
[\n\t{\n\t\ttext: "hello this is some json test stuff",\n\t\tduration: "5000"\n\t},\n\t{\n\t\ttext: "this is the second line in that json object thing",\n\t\tduration: "3000"\n\t},\n\t{\n\t\ttext: "this is the third and final line in that json object thing",\n\t\tduration: "8000"\n\t}\n]
有人知道我该如何解决这个问题吗?