我想我会把它放在那里,给其他可能遇到同样事情的人。我有一种情况,我正在将数据加载到网格的存储中,但是每一行都显示了相同的确切信息(并且存储中的数据不同)。来看看,您必须在您的商店(在我的情况下为内存商店)中指定 idProperty 才能正确呈现行。
var myStore = new Memory({data:[{customerId:'abcd', customerName:'Customer ABC'}, {customerId:'defg', customerName:'Other Customer'}], idProperty:'customerId'`});
如果你不把那个 idProperty 放在那里,你会得到重复的数据。