我一直在這裏一段時間,無法弄清楚我有什麼以及如何使用它。從現有對象創建新對象
當我使用console.log
,我得到這個回:
description:"Some text here"
id:1234
location:Array(1)
name:"Some Name"
tags:
Array(7)
0:Object
name:"Landmark"
public_id:"landmark"
__proto__
1:Object
name:"Park"
public_id:"park"
__proto__
我期待得到的東西是這樣的:
{id:1234,tags:[landmark,park]}
我可以得到id
部分罰款與此:
var thePlaces=[];
$.each(data, function(index, val) {
thePlaces.push({
id:val.id
})
})
我該如何去添加標籤到各自的id
現在?
你的對象似乎代表着你想要什麼已經。 –