在我的服务器中,我以jsTree格式返回一个JSON对象:
{"id":"value", "text":"value", "parent":"value"}
我通过Ajax调用在我的视图中获取它。 Console.log
向我展示了详细信息,但jsTree给了我错误:
未捕获的TypeError:无法读取属性' children'未定义的
查看:
$.ajax({
url: "/category",
dataType: 'json',
type: 'GET',
success: function (res) {
$.each(res, function (i, obj) {
products.push([obj.id, obj.parent, obj.text]);
$('#jstree_demo_div').jstree({
'core': {
'data': [{ "id": obj.id, "parent": obj.parent != 0 ? obj.parent : "#", "text": obj.text }]
}
});
console.log(obj.parent != 0 ? obj.parent : "#");
});
}
});
答案 0 :(得分:0)
我正在使用Ajax。
我通过声明包含(id,parent,text)的新对象javaScript解决了这个问题
例如:
var objJS = new Object();
objJS .id = ObjectJason.id;
objJS .parent = ObjectJason.parent!=="0" ? ObjectJason.parent:"#";
objJS .text = ObjectJason.text;
我声明了一个数组,我推送所有对象并将其提供给数据',就像这样
$('#jstree_demo_div').jstree({
'core': {
'data': Array ;
}
});
它完美无缺!我希望它会帮助很多人