gpt4 book ai didi

javascript - 追加到 API Node.js 中的数组

转载 作者:太空宇宙 更新时间:2023-11-04 03:09:04 28 4
gpt4 key购买 nike

我需要将一个项目附加到 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()吗?

最佳答案

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

你可能想要

top: top.concat(10)

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

关于javascript - 追加到 API Node.js 中的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29575828/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com