欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

attributes in nodes

程序员文章站 2022-03-05 08:17:59
...
Jack真是贴心周全啊。Node中attributes属性是开放出来供开发者自己定义属性用的。如果在定义json data时希望把自己需要的属性也加进去,能被load出来。那么用这个public property就好了。


// json data
[{
"id":"haha",
"text":"haha",
"contentLink":myurl
}]

// get the node contentLink
treePanel.on('click', function(node){
var link = node.attributes.contentLink;
......
});


轻松快意,想放多少放多少。
相关标签: json