附加到API node.js中的数组

时间:2015-04-11 08:35:22

标签: javascript node.js

我需要将一个项目附加到Node.js中的API。

这是我的代码

app.post('/api/scores', function(req, res){
    //creamos el score para guardarlo en la bd
    Score.create({
        userEmail : req.user.email,
        game : game,
        top : top.push(10)
    })
})

我可以这样做top.push()?

1 个答案:

答案 0 :(得分:4)

当然,如果你想传递push的返回值,这是数组的新长度。请参阅docs

你可能想要

top: top.concat(10)

因为concat返回新数组,这很可能是你想要的。