NodeJs Express发送403并渲染

NVO*_*NVO 10 node.js express

如何发送错误403并呈现包含"您无权访问此页面"消息的页面?

我现在有这个:

res.send(403,"You do not have rights to visit this page");
Run Code Online (Sandbox Code Playgroud)

但我想渲染一个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?'});
Run Code Online (Sandbox Code Playgroud)

具有403状态.