如何改变"查看引擎到ejs"在heroku上传时,节点js中的其他内容

时间:2017-04-10 18:53:39

标签: angularjs node.js heroku

我是angularjs或Node js的初学者。对不起愚蠢的问题。目前我已使用命令ng new appname进行应用程序。我想在heroku上传它。因为我得到了帮助并编写了server.js文件。在这里。

var express = require('express');
var app = express();
// set the port of our application
// process.env.PORT lets the port be set by Heroku
var port = process.env.PORT || 8080;

// set the view engine to ejs
app.set('src engine', 'ejs');
// make express look in the public directory for assets (css/js/img)
app.use(express.static(__dirname + '/about'));

// set the home page route
app.get('/', function(req, res) {

    // ejs render automatically looks in the views folder
    res.render('index');
});

app.listen(port, function() {
    console.log('Our app is running on http://localhost:' + port);
});

搜索views文件夹并从该文件夹运行index.ejs文件。但我想运行/src/index.html文件。 任何人都可以帮助我,我怎么能运行它?我浪费了一整天的时间。拜托...我会感谢这种善意。

1 个答案:

答案 0 :(得分:0)

您只需在快递实例上设置view engine属性:

...
app.set('view engine', 'ejs');
...