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

我被Dojo坑出翔

程序员文章站 2022-05-30 09:58:55
...
坑尼玛爹的Dojo Tree

ObjectStoreModel.js

getChildren: function(/*Object*/ parentItem, /*function(items)*/ onComplete, /*function*/ onError){
               // summary:
               //          Calls onComplete() with array of child items of given parent item.
               // parentItem:
               //          Item from the dojo/store

               var id = this.store.getIdentity(parentItem);
               if(this.childrenCache[id]){
                    when(this.childrenCache[id], onComplete, onError);
                    return;
               }


看到没!这就是坑尼玛爹的dojo 干的好事!!!var id = this.store.getIdentity(parentItem);通过item对象获得id!!!注意,这里的id就是你对象里的id属性~就是这样{“id” : “1”},所以如果你的store里面有两个id为1的不同对象~即使他们是父子关系~如果你拿到的是父亲,那么恭喜你啦!this.childrenCache[id]会一直得到你自己!喜大普奔,你可以享受一次递归死循环了思密达~!!!!!!!
相关标签: dojo javascript