express之sendFile

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了express之sendFile相关的知识,希望对你有一定的参考价值。

module.exports = function(req, res, opt) {
    var applyNo = req.query.applyNo;
    console.log("applyNo:"+applyNo);
    var file = path.resolve(__dirname, "../../web/repay_jld.html");
    res.sendFile(file);
}
//页面跳转到repay_jld.html
//如果请求的url中有applyNo参数,那么repay_jld.html
//也会带有applyNo参数

 

以上是关于express之sendFile的主要内容,如果未能解决你的问题,请参考以下文章

Express res.sendFile 没有上传 CSS

express:如何使用 sendFile 将 html 和 css 一起发送?

使用 sendFile() 在 Express 中发送静态文件

Angularjs - TypeError:路径必须是绝对路径或指定根到 res.sendFile

Linux 高级I/O函数之sendfile

Linux-Nginx之sendfile与上下文切换