加载页面时,我从服务器收到一个jsonHandelbars.java
,并使用. 到现在一切都很好。
但是,我想获取该json对象并将其存储在 javascript对象中,这是我失败的地方。
当我尝试将其存储在javascript对象上时,我执行以下操作:
var jsObject = "{{output.items}}"; // the output.items is the JSON retrieved on the template
我得到以下("e;
和换行符解释):
{
"profile": {
"name": "copernic",
"email": "copernic@cop.com"
}
....
}
当我应该得到以下内容时(不解释换行符):
{
"profile": {
"name": "copernic",
"email": "copernic@cop.com"
}
....
}
所以它在javascriptUncaught SyntaxError: Unexpected token ILLEGAL
上给我一个错误。
当使用它在 HTML 模板上打印 json 时<pre>{{output}}</pre>
看起来很好。
您是否知道如何将服务器返回的json存储在页面加载到javascript对象上,因为我没有太多控制它,因为它没有附带json?
谢谢你。