admin管理员组文章数量:1418637
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 badges2 Answers
Reset to default 6if 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');
});
本文标签: javascriptExpress ressendFile forces download instead of serving of HTMLStack Overflow
版权声明:本文标题:javascript - Express res.sendFile forces download instead of serving of HTML - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745295853a2652073.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论