Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个要用于文件列表的数据网格,如果该文件已经存在于数据网格(存储)中,我希望它只给他们一个 dijit 对话框,说明该文件已经存在。我的问题是更容易绑定到商店并查看文件是否已经存在或将字段的值存储在数组中并查看文件是否存在?
我不会将值存储在额外的数组中(=开销)。
您可以使用存储访问数据网格的值:
var store = new some.Datastore(); store.fetch({onComplete: function(items, request){ console.log("找到的项目数:" + items.length); }});
var store = new some.Datastore();
store.fetch({onComplete: function(items, request){
console.log("找到的项目数:" + items.length);
}});
来源:
http://dojotoolkit.org/reference-guide/1.8/dojo/data/api/Read.html#fetching-all-the-items-from-the-store