我想推一個陣列到另一個陣列,但其結果產生不正確的結果推項目的陣列typescrip與鍵值
let pusheditems:any[] = [];
pusheditems.push(this.yesvalue);
pusheditems.push(this.selectedtruck);
後來,當我console.log(pusheditems)
我得到的數組鍵入
array(0->yes array, 1->select truck array)
什麼找的是改變0,1的索引值是一樣的字符串,卡車
,所以我會期望得到
array(yes->yes array, truck->select truck array)
我也曾嘗試
pusheditems.push({yes:this.yesvalue}); //adding yes
pusheditems.push({truck:this.selectedtruck}); //adding truck
但是,這並不工作
的
this.yesvalues and this.selectedtruck are also arrays
的值,我需要什麼再添加
感謝伊戈爾這個作品 –