gpt4 book ai didi

node.js - NodeJs Express 发送 403 并渲染

转载 作者:IT老高 更新时间:2023-10-28 23:24:30 25 4
gpt4 key购买 nike

如何发送错误 403 并呈现带有“您无权访问此页面”消息的页面?

我现在有这个:

res.send(403,"You do not have rights to visit this page");

但我想呈现 HTML 页面而不是基本文本

res.render('no-rights', {title: 'You have no rights to visit this page', text: 'You are not allowed to visited this page. Maybe you are not logged in?'});

具有 403 状态。

最佳答案

http://expressjs.com/en/api.html#res.status

res.status(403);
res.render();

或者一行

res.status(403).render();

关于node.js - NodeJs Express 发送 403 并渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38873083/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com