我希望在我的帖子上有自定义网址,这些网址会显示“www.website.com/post_name”而不是“www.website.com/12312874112”。 这是我的路由
app.get("/:id" ,function(req, res){
Post.findById(req.params.id, function(err, foundPost){
if(err){
res.redirect("/");
} else {
res.render("show", {post: foundPost});
}
});
});