我正在做dojo1.7。我有一个 EnhancedGrid,需要用最新数据刷新。
var gridStore = new dojo.data.ItemFileWriteStore({ url:'', data:result, urlPreventCache: false });
grid.store=gridStore;
grid._refresh();
我正在以所需格式获取一些数据
var result = { "identifier": "id",
"items": [] //jsonobject };
上面的代码在 Firefox 上运行良好,但是在 IE 上我得到一个错误'null is null or not an object'。我不确定 IE 出了什么问题。dojo1.7有没有其他方法可以改变store?
提前致谢!