我不知道執(zhí)行此操作的功能,有人知道嗎?
3 回答

UYOU
TA貢獻(xiàn)1878條經(jīng)驗(yàn) 獲得超4個(gè)贊
上面的答案很好,但是其中一半不會因?yàn)榉祷豀TTP狀態(tài)代碼而得到404,而另一半則無法呈現(xiàn)自定義模板。在Expressjs中擁有自定義錯(cuò)誤頁面(404)的最好方法是
app.use(function(req, res, next){
res.status(404).render('404_error_template', {title: "Sorry, page not found"});
});
將此代碼放在所有URL映射的末尾。
- 3 回答
- 0 關(guān)注
- 842 瀏覽
添加回答
舉報(bào)
0/150
提交
取消