javascript - Express res.sendFile forces download instead of serving of HTML - Stack Overflow

I'm having the most bizarre issue with Express's res.sendFile function. The following is the

I'm having the most bizarre issue with Express's res.sendFile function. The following is the code in my index.js:

app.get('/', function(req, res){
    var path = __dirname + '/views/index.ejs';
    res.sendFile(path);
});

Nothing plicated, but when navigating to localhost the browser downloads the HTML instead of displaying it.

I'm having the most bizarre issue with Express's res.sendFile function. The following is the code in my index.js:

app.get('/', function(req, res){
    var path = __dirname + '/views/index.ejs';
    res.sendFile(path);
});

Nothing plicated, but when navigating to localhost the browser downloads the HTML instead of displaying it.

Share Improve this question asked Oct 14, 2015 at 7:30 BHouwensBHouwens 3905 silver badges13 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 6

if you want to render just use the express utility function

app.get("/", function(req, res) {
    res.render(__dirname + "/views/index.ejs");
});

I don't know if this is an expressRouter-only thing but I got around this by declaring get functions on an expressRouter, getting the main app to use this router, and then, most importantly, using res.render as opposed to res.sendFile.

var router = express.Router();

router.get('/', function(req, res){
   res.render(__dirname + '/views/index.ejs');
});

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745295854a4621137.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信