我有一个变量$data['tree']
,它使用模型中的方法从数据库中获取一个行数组get_tree($id)
。
在我看来,我使用的 js
var dbTree = JSON.parse(<?php echo $tree; ?>);
当我加载页面时,我UncaughtSyntax Error: Unexpected token o
在 chrome 和 Firefox 中得到Syntax Error: Unexpected character
.
所以当我用 chrome 检查脚本元素时,js 看起来像
var dbTree = JSON.parse({"id":"2","name":"sean","userId":"51fbd3f3a8f2ba1b5b000002","accountId":"51fbd3fca8f2ba1b5b000003","createdAt":"2013-08-02 16:09:34","numRuns":null,"contactExport":"","updatedAt":"2013-08-02 20:15:14","deployed":"1","template":"0","conversation_type":"Conversation"});
我看不出有什么问题可以帮助我。