嗨,有人能告诉我如何复制一个数据存储到另一个道场。我尝试了下面的方式,但它不起作用。这里我尝试将数据从jsonStore复制到newGridStore。
jsonStore.fetch({query:{} , onComplete: onComplete});
var onComplete = function (items, request) {
newGridStore = null;
newGridStore = new dojo.data.ItemFileWriteStore({
data : {}
});
if (items && items.length > 0) {
var i;
for (i = 0; i < items.length; i++) {
var item = items[i];
var attributes = jsonStore.getAttributes(item);
if (attributes && attributes.length > 0) {
var j;
for (j = 0; j < attributes.length; j++) {
var newItem = {};
var values = jsonStore.getValues(item, attributes[j]);
if (values) {
if (values.length > 1) {
// Create a copy.
newItem[attributes[j]] = values.slice(0, values.length);
} else {
newItem[attributes[j]] = values[0];
}
}
}
newGridStore.newItem(newItem);
}
}
}
}
根据上面的评论。尝试将值复制到新Store的原因只有一个,即能够检测哪些值发生了更改,然后单独保存它们,而不必发送整个Store。
这个方法是完全错误的。
Dojo具有isDirty()
,并为您提供了将revert()
存储回其原始值的能力。它知道哪些值改变了,你不需要这样做。
查看博客标准IFWS: http://docs.dojocampus.org/dojo/data/ItemFileWriteStore
请务必阅读此处的所有内容:http://docs.dojocampus.org/dojo/data/ItemFileWriteStore#id8
你要做的是创建你自己的_saveCustom
方法,你将覆盖你的存储,然后当你保存,你将能够看到哪些值已经改变。
点击页面最底部的演示。它向您展示了如何使用_savecstomm