DELETE
删除数据
DELETE 使用
app.delete('/product/:id', async function (req, res) {
const product = await product.findById(req.params.id);
await product.remove(); // 执行移除
res.send({
success: true //返回删除成功
})
})
删除数据
app.delete('/product/:id', async function (req, res) {
const product = await product.findById(req.params.id);
await product.remove(); // 执行移除
res.send({
success: true //返回删除成功
})
})