我有一個對象jQuery中希望實現具有類似值的計數陣列jQuery中
obj[{timestamp:1499385600},{timestamp:1499385600},{timestamp:1499385600}, {timestamp:1499299200}, {timestamp:1499299200}, ...]
現在我需要的對象,其中i將具有特定時間戳作爲名稱,值對所有計數。例如。
{{timestamp: 1499385600, count: 3}, {timestamp: 1499299200, count:2}}
不能理解如何在這裏迭代循環。 到目前爲止,我已經完成
var newobj={};
for(i=0;i<obj.length;i++){
newobj['timestamp']=obj[i].timestamp;
newobj['count']=//Not sure what to write here to get the count
}
建議表示讚賞。由於
的對象的樣品中有語法錯誤。你能給出一個更清晰的數據樣本 –
是否正確',{timestamp:1499385600]'? – lalithkumar
[{timestamp:1499385600},{timestamp:1499385600},{timestamp:1499385600},{timestamp:1499299200},{timestamp:1499299200},...] ....這是數組 –