如何使用 deleteMany() 从 mongoDB 中删除所有文档?

How to delete all documents from mongoDB using deleteMany()?

我正在尝试使用 Express + MongoDB 构建 React 应用程序。

我能够使用 POST 方法成功地将一些文档 post 到 MongoDB 但我不知道如何使用 DELETE 删除所有文档(我正在尝试使用数据库中的单个文档而不是它们的列表)。

这些是我的路线:

router.post('/totalbalance', (request, response) => {
    const totalBalance = new TotalBalanceModelTemplate({
        totalBalance:request.body.totalBalance,
    });
    totalBalance.save()
    .then(data => {
        response.json(data);
    })
    .catch(error => {
        response.json(error);
    });
});

router.delete('/totalbalance', (request, response) => {
    request.body.totalBalance.deleteMany({}, function(err) {
        if (err) {
            response.status(500).send({error: "Could not clead database..."});           
        } else {
            response.status(200).send({message: "All info was deleted succesfully..."});
        }
    });
});

这些是 axios 请求:

axios.post('http://localhost:4000/app/totalbalance', 
 {
        totalBalance: newTotalBalance
 });

useEffect(() => {
    axios.delete('http://localhost:4000/app/totalbalance')
        .then(res => {
            console.log('request here ', res);
        })
        .catch(function (error) {
            console.log(error);
        })
}, []);

当我启动应用程序时,在 Chrome 控制台中我看到错误“xhr.js:177 DELETE http://localhost:4000/app/totalbalance 500(内部服务器错误) " (这是因为我使用 useEffect() 传递一个空数组作为依赖,所以在 React 组件的初始渲染后它是 运行 一次)。

应该如何删除? 也许我应该结合使用 POST 和 DELETE 方法?

您需要在 Mongoose 模型上调用 deleteMany 函数。 request.body.totalBalance 不会成为模特。

看来您需要 .delete 路线如下。

router.delete('/totalbalance', (request, response) => {
    TotalBalanceModelTemplate.deleteMany({}, function(err) {
        if (err) {
            response.status(500).send({error: "Could not clead database..."});           
        } else {
            response.status(200).send({message: "All info was deleted succesfully..."});
        }
    });
});