vue的Array坑

GZhiDao1010發表於2018-03-09

const _toLongArray = [{id:1},{id:2}]
_toLongArray.forEach((item,index)=>{    this.toLongArray.splice(index,1)

})
//當this.toLongArray資料太複雜時,陣列刪除可能無效
//建議:
var _new = []
_toLongArray.forEach((item,index)=>{    
if(item){
    _new .push(item)}
}
this.toLongArray = _new 

複製程式碼


相關文章