首页 > 代码库 > express之sendFile

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