0.0.7 • Published 7 years ago

nunjucks-component-extension v0.0.7

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

nunjucks-component-extension

nunjucks plugin for pass data

install

npm install nunjucks-component-extension --save

use case

const nunjucks = require('nunjucks');
const env = new nunjucks.configure(config.cwd);

env.addExtension('ComponentExtension', require('nunjucks-component-extension'));

nunjucks.render('index.html', (err, str) => {
    console.log(str);
})

ex.

index.html:

<html>
<head>
	<title>test component</title>
</head>
<body>
	{%
		set obj = {
			name: 'Michael',
			corp: 'Alibaba',
			dep: '神马搜索'
		}
	%}

	{% component file="sub.html", obj%}
</body>
</html>

sub.html:

<p>姓名: {{name}}</p>
<p>公司: {{corp}}</p>