我的 Node.js/Express Web 应用程序中有一个 JavaScript 数据结构,如下所示:
var users = [
{ username: 'x', password: 'secret', email: 'x@x.com' }
, { username: 'y', password: 'secret2', email: 'y@x.com' }
];
收到新用户的已发布表单值后:
{
req.body.username='z',
req.body.password='secret3',
req.body.email='z@x.com'
}
我想将新用户添加到应该导致以下结构的数据结构中:
users = [
{ username: 'x', password: 'secret', email: 'x@x.com' }
, { username: 'y', password: 'secret2', email: 'y@x.com' }
, { username: 'z', password: 'secret3', email: 'z@x.com' }
];
如何使用发布的值向我的用户数组添加新记录?