使用 express put 方法减少服务器数量

decrease number server making with express put method

我正在尝试减少数量,我必须在 mongodb 数据库上进行更改,我还需要在正文中显示它。我设置了一个名为 delivered 的按钮,它将数量值减少 1 。但是当我点击交付按钮时,nodemon index.js cmd 突然崩溃了。它说“MongoInvalidArgumentError:更新文档需要原子运算符”

//Client side:

const handleQuantity = (quantity) => {
        const newQuantity = Number(quantity) - 1;
        // console.log(newQuantity);
        fetch(`http://localhost:5000/inventory/${itemsId}`, {
            method: "PUT",
            headers: {
                'content-type': 'application/json'
            },
            body: JSON.stringify({ newQuantity })
        })
            .then(res => res.json())
            .then(data => console.log(data))

    }
//server side: 

app.put('/inventory/:id', async (req, res) => {
            const id = req.params.id;
            const property = req.body;
            const query = { _id: ObjectId(id) };
            const options = { upsert: true };
            const updateDoc = {
                $set: {
                    quantity: property.newQuantity
                }
            };
            const result = await inventoryCollection.updateOne(query, options, updateDoc);
            res.send(result)
        })```

客户端:

const handleQuantity = (quantity) => {
    const newQuantity = parseInt(quantity) - 1;
    // console.log(newQuantity);
    fetch(`http://localhost:5000/inventory/${itemsId}`, {
        method: "PUT",
        headers: {
            'content-type': 'application/json'
        },
        body: JSON.stringify({ newQuantity })
    })
        .then(res => res.json())
        .then(data => console.log(data))

}