admin管理员组文章数量:1345096
So I'm trying to use consolidate.js to render swig templates with express, but I get the following error when I try to "extend" one template from another:
Error: ENOENT, no such file or directory '//one.html
In my app.js
file I setup swig as my rendering engine (only including relevant code):
var consolidate = require('consolidate');
app.set('view engine', 'html');
app.set('views', __dirname + '/views');
app.engine('.html', consolidate.swig);
app.get('/test', function(req, res) {
res.render('two');
});
And I have a base template, one.html
:
<h3>My Site</h3>
{% block content %}
Wele
{% endblock %}
Then an inheriting template, two.html
:
{% extends 'one.html' %}
{% block content %}
This is an inner page.
{% endblock %}
So why does swig look for one.html
with a path of //one.html
(like in the error above?) Thanks for any help.
So I'm trying to use consolidate.js to render swig templates with express, but I get the following error when I try to "extend" one template from another:
Error: ENOENT, no such file or directory '//one.html
In my app.js
file I setup swig as my rendering engine (only including relevant code):
var consolidate = require('consolidate');
app.set('view engine', 'html');
app.set('views', __dirname + '/views');
app.engine('.html', consolidate.swig);
app.get('/test', function(req, res) {
res.render('two');
});
And I have a base template, one.html
:
<h3>My Site</h3>
{% block content %}
Wele
{% endblock %}
Then an inheriting template, two.html
:
{% extends 'one.html' %}
{% block content %}
This is an inner page.
{% endblock %}
So why does swig look for one.html
with a path of //one.html
(like in the error above?) Thanks for any help.
1 Answer
Reset to default 11Figured it out after looking at the swig documentation (specifically the section on usage with Express.) All I had to do was initialize swig, and tell it where to look for "extended" templates:
var consolidate = require('consolidate'),
swig = require('swig');
app.set('view engine', 'html');
app.set('views', __dirname + '/views');
app.engine('.html', consolidate.swig);
app.get('/test', function(req, res) {
res.render('two');
});
/* Tell swig where to look for templates when one extends another. */
swig.init({ root: __dirname + '/views' });
本文标签: javascriptCannot render swig templates in ExpressStack Overflow
版权声明:本文标题:javascript - Cannot render swig templates in Express - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743754777a2533307.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论