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.

Share Improve this question edited Jan 30, 2013 at 21:36 Flexo - Save the data dump 88.9k22 gold badges201 silver badges281 bronze badges asked Dec 17, 2012 at 3:05 theabrahamtheabraham 16.4k9 gold badges44 silver badges41 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11

Figured 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