NodeJS计算数组中有多少个对象?

时间:2015-03-17 05:53:33

标签: javascript node.js

我如何计算数组中有多少个对象?

数组看起来像:

[ {id: 1}, {id: 2}, ...]

我假设我可以使用count(),如果它是PHP,但是NodeJS / Javascript呢?

编辑:

asd

if (offer.items_to_receive.length > 0) { 
    console.log("items: " + offer.items_to_receive.length);
    for(var i = 0; i < offer.items_to_receive.length; i++) {
        usersInRound.push(offer.steamid_other);
    }
}

logData('Accepted trade offer from ' + offer.steamid_other + '. (tradeofferid: ' + offer.tradeofferid + ')\nWorth ' + offer.items_to_receive.length + ' tickets. ');

为什么它可以阅读“值得X票”,而不是其他部分?

3 个答案:

答案 0 :(得分:12)

使用.length

&#13;
&#13;
var data = [{
    id: 1
}, {
    id: 2
}];

console.log(data.length);
&#13;
&#13;
&#13;

更新,在您的编辑中我看到了

offer.items_to_receiveundefined,确保对象offer具有属性items_to_receive(应为数组);

答案 1 :(得分:3)

list = //YOUR OBJECT DATA

count= Object.keys(list).length;

Object.keys() gives the count of keys

应该给出正确的计数

答案 2 :(得分:0)

我认为你的问题应该是How to get Array Size in Javascript?

答案: 使用length方法。


示例:

[1,2,3].length
// => 3

var a = { num: 1, obj: {}, arr: [{}, 3, "asd", {q: 3}, 1] }
a.arr.length
// => 5