我正在尝试在请求某个具有静态路由的页面时对用户进行身份验证。
app.use(express.static(__dirname + '/public/app');
假设文件夹" templates"在上面的路径下(' / public / app / templates'):
app.get('/templates/permissionPage.html',function(req,res){
// if user is authorized.. reutrn the page,
else return 401..
});
我的路由甚至不输入页面的get请求。我该如何处理这个请求? 我希望只有特定用户可以访问此页面,尽管他有静态路由。
我在我的前端使用angularJS
谢谢
答案 0 :(得分:1)
您有两种选择: