從下面給定的對象 中刪除名爲「itemType」的屬性的方法是什麼?從數組中刪除對象
{
"id": 19,
"cost": 10,
"items": 10,
"numbers": 10,
"status": false,
"hours": 10,
"itemType": {
"id": 16,
"name": "PC 350",
"description": "PC 350"
},
"typeid": 12
}
,使最終數組應該像
{
"id": 19,
"cost": 10,
"items": 10,
"numbers": 10,
"status": false,
"hours": 10,
"typeid": 12
}
這裏沒有數組,沒有對象'itemtype'。然而,有一個對象有一個屬性'itemtype' – charlietfl
感謝您的糾正。我編輯了問題 – forgottofly
可能重複的[從JavaScript對象中刪除屬性](http://stackoverflow.com/questions/208105/remove- property-from-javascript-object) –