EJS寻找template报错
正在练手中,没有使用任何框架,从EJS官网下载的最新的包。 非常简单,下面是js文件
require('./ejs');
var data = { title: 'hello' };
var html = new EJS({ url: '/template.ejs' }).render(data);
console.log(html);
下面是ejs文件 <h 1><%= title %></h 1>
在运行时会抱以下错误 Downloads/temp/ejs.js:71 throw( {type: ‘EJS’, message: 'There is no template at '+url} ); ^ 希望各位可以指点迷津!
1 回复
有人知道为什么报错吗?