1
我試圖更新二維數組的視圖,但視圖更新者更新新值。 如果我只有一個數組,它工作正常,但不是兩個。更新Aurelia中的二維數組的視圖
export class App {
constructor(){
this.numbers = [];
};
update(){
for(var i=0; i < 5; i++){
this.numbers[i] = [];
for(var p=0; p < 4; p++){
this.numbers[i].push(Math.random());
}
}
}
};
你能發表您的視圖代碼嗎? – kabaehr