1 回答
TA贡献2080条经验 获得超4个赞
express.static(path,[options])返回一个函数。所以基本上您的代码正在做的是:
router.get('/v1/secure-api-documentation',ensureAuthenticate,(req,res)=>{
express_static_function // this function further accepts arguments req, res, next
//there is no function call happening here, so this is basically useless
});
但是,这不是express.static用于express.static的用途,它采用请求路径并在您指定的文件夹中查找具有相同名称的文件。
基本上,如果GET请求到达'/ v1 / secure-api-documentation',它将采用'/ v1 / secure-api-documentation'之后的请求路径,并在api_docs文件夹中查找该路径。将express.static传递给router.get()将在非常特殊的路径中调用它。这个很重要。GET '/v1/secure-api-documentation/index.html'将失败。因为这样的路线没有处理。
您需要执行的操作是对'/ v1 / secure-api-documentation / *'之类的任何路径调用express static 。
为此,您需要使用express应用程序对象,并编写以下代码:
//make sure to use the change the second argument of path.join based on the file where your express app object is in.
app.use('/v1/secure-api-documentation',express.static(path.join(__dirname,'../api-doc')));
现在,这不仅适用于index.html文件,而且还适用于api_docs中要求的任何js / css文件。
添加回答
举报