Open byInWind opened 5 years ago
在4.9.1 文章模型设计,// GET /posts/:postId/remove 删除一篇文章
PostModel.delPostById(postId) .then(function () { req.flash('success', '删除文章成功') // 删除成功后跳转到主页 res.redirect('/posts') })
这里只有delPostById方法只传递了postId,我认为缺少了author,因为在models定义方法时需要传两个ID,并且我尝试删除文章时虽然提示成功,但是文章没有被删除,我加上author后删除成功了。
希望您有空时看一下
@byInWind
并且我尝试删除文章时虽然提示成功,但是文章没有被删除,我加上author后删除成功了
我也遇到了这个问题,请问你这里的代码是怎么写的
在这里 PostModel.delPostById(postId)加上author 改为这样PostModel.delPostById(postId,author) 试一下吧
@byInWind 好的,谢谢!
提问方式:
不好的提问方式: