res==carInfo.id) if (index!=-1) { ? ?accounts.collectId.splice(index,1) } 代碼說明:先用findIndex()找到要刪除的數(shù)據(jù)的下標index,當index!=-1的時候說明數(shù)組中存在這個數(shù)據(jù)">
數(shù)據(jù)驅動、堅持為客戶提供有價值的服務和內容
方法一:
const index=accounts.collectId.findIndex(res=>res==carInfo.id)
if (index!=-1) {
? ?accounts.collectId.splice(index,1)
}
代碼說明:先用findIndex()找到要刪除的數(shù)據(jù)的下標index,當index!=-1的時候說明數(shù)組中存在這個數(shù)據(jù),再用splice()來刪除數(shù)據(jù),splice(index,1)