我有一个文件夹
里面的api-docs我有index.html一些CSS和js文件
我需要为经过身份验证的用户呈现api-doc。
我不在视图中使用它,因为在项目中我在视图中使用玉器,而api-doc在html中
我试过了
router.get('/v1/secure-api-documentation',(req,res)=>{
console.log('A')
res.sendFile(__dirname + '/../api-doc/index.html');
});
和
router.get('/v1/secure-api-documentation',ensureAuthenticate,(req,res)=>{
express.static(path.join(__dirname,'../api-doc'))
});
犯罪嫌疑人X
相关分类