使用express -t ejs microblog创建出来的居然不是ejs项目,而是jade项目。
现在的版本已经没有-t这个命令了,改为express -e microblog。
运行完之后,根据提示运行cd microblog && npm install,ejs模板就安装好了。
使用:npm start 就可以运行项目了。
在ejs项目上使用.html后缀的方法:
app.js文件上添加:
1.var ejs = require('ejs');
2.app.engine('.html',ejs.__express);
3.先注释掉app.set('view engine', 'ejs'),添加app.set('view engine','html');
从上面的问题,可以提出另外一个问题express的命令的参数,怎么查询?运行express --help,就可以得到:
Usage: express [options] [dir]
Options:
-h, --help output usage information
--version output the version number
-e, --ejs add ejs engine support
--pug add pug engine support
--hbs add handlebars engine support
-H, --hogan add hogan.js engine support
-v, --view <engine> add view <engine> support (ejs|hbs|hjs|jade|pug|twig|vash) (defaults to jade)
-c, --css <engine> add stylesheet <engine> support (less|stylus|compass|sass) (defaults to plain css)
--git add .gitignore
-f, --force force on non-empty directory
从上可以看到-e 表示是末班引擎ejs