我试着使用下面的东西,但是它不起作用:
store.each(function(record){
console.log("record+++++", record);
});发布于 2017-05-10 22:43:11
TreeStore的界面与普通商店略有不同,这很烦人。我通常这样做:
_.each(store.getRootNode().childNodes, function(record) {
console.log(record);
});https://stackoverflow.com/questions/43886573
复制相似问题