我正在尝试使用此功能来编辑mongodb数据库中的一个空间,但是我对此并不陌生,并且我不知道发生了什么。我收到参数列表后缺少)的错误。谢谢大家的光临。

app.put('/factura/:id', (req, res) => {
    res.header({'Content-Type': 'application/json'});

    var factura = req.body;
    var facturaModel = new FacturaModel({
        nro: factura.nro,
        nit: factura.nit,
        cliente: factura.cliente,
        tarjeta: factura.tarjeta,
        detalles:[{producto: factura.nombre, cantidad: factura.cantidadSeleccionada, precio_unitario: factura.precio}]
    })

    FacturaModel.findByIdAndUpdate({id: req.params.id}, (err, factura) => {
        console.log(JSON.stringify(factura));
        res.end(JSON.stringify($set: factura));
    });


});

最佳答案

JSON.stringify接受一个对象作为参数。您尚未在此处创建对象,因此尝试将$set声明为属性不起作用。如果要输出类似{"$set":"foo"}的输出,请给JSON.stringify一个对象进行字符串化:

res.end(JSON.stringify({ $set: factura }));

09-11 10:20