flatiron.js/ пластин частичные шаблоны?
Итак, я только начал работать с flatironjs и " пластинами". Я пытаюсь выяснить, как у меня может быть основной шаблон макета, а затем частичный шаблон, который загружает контент в основной шаблон макета, аналогично тому, как это делает expressjs...
С expressjs есть layout.js и, возможно, index.js. index.js заполняет область содержимого layout.js. Кажется, что это будет испечено. Я не вижу способа сделать это на основе документации.
1 ответ
Решение
Основной шаблон макета (template.html):
<h1>This is the main template.</h1>
<div id="main"></div>
Частичное (part.html):
<p>This is the partial that should be rendered into the main template.</p>
Тогда вы можете сделать это:
var fs = require("fs"),
Plates = require("plates");
// Read the two files from disk
var template = fs.readFileSync("template.html", "utf-8");
var partial = fs.readFileSync("partial.html", "utf-8");
// Render the partial into main.
// The data-key in the second param is matched to the id in the template.
// Plates renders the corresponding value - in this case the contents of
// partial.html - between the start and end tags with this id.
var rendered = Plates.bind(template, {main: partial});
Так console.log(rendered)
должен дать вам:
<h1>This is the main template.</h1>
<div id="main">
<p>This is the partial that should be rendered into the main template.
</p>