app.delete('/posts/:id', function(req, res){ console.log("Deleting"); Post.findById( req.params.id, function ( err, post ){ post.remove( function ( err, ...
確定! 回上一頁