我有以下数据结构,我想在Dyntree格式中给出的数据结构中使用:
[
{
title: "my Title",
isFolder: "true",
key: 1
}
]
我在JS变量中将数据结构设置为STRING。
当我将此值设置为javascript变量时,会出现无效类型错误
var fakeJsonResult = [
{ title: 'Lazy node 1', isLazy: true },
{ title: 'Simple node 2', select: true }
];
答案 0 :(得分:1)
如果您想从您提到的对象创建一个dynatree,只需执行此操作
,这很简单var children = [
{
title: "my Title",
isFolder: "true",
key: 1
}
];
$('#tree').dynatree({
children : children
});