node.js – expressjs:如何在处理程序中间重定向到静态文件?

前端之家收集整理的这篇文章主要介绍了node.js – expressjs:如何在处理程序中间重定向到静态文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用expressjs,我想做这样的事情:
app.post('/bla',function(req,res,next){
   //some code
   if(cond){
      req.forward('staticFile.html');
   }
});

解决方法

正如Vadim指出的那样,您可以使用res.redirect将重定向发送到客户端.

如果要在不返回客户端的情况下返回静态文件(如建议的注释),则只需在使用__dirname构造后调用sendfile即可.您可以将下面的代码分解为单独的服务器重定向方法.您也可能想要注销路径以确保它符合您的期望.

filePath = __dirname + '/public/' + /* path to file here */;

    if (path.existsSync(filePath))
    {
        res.sendfile(filePath);
    }
    else
    {
       res.statusCode = 404;
       res.write('404 sorry not found');
       res.end();
    }

这是参考文档:http://expressjs.com/api.html#res.sendfile

原文链接:https://www.f2er.com/nodejs/241107.html

猜你在找的Node.js相关文章