我使用Hogan.JS作为JavaScript模板库。它应该从外部文件加载JavaScript模板。人们可以在外部JavaScript文件中外包几个模板。
有谁知道怎么做?
我有以下代码示例:
<!DOCTYPE html>
<html>
<head>
<title>Hogan.JS Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="js/jquery-1.9.0.min.js"></script>
<script src="js/hogan-2.0.0.min.js"></script>
<script id="scriptTemplate" type="text/mustache">
<p>Your text here: {{text}}</p>
</script>
</head>
<body>
<script>
var data = {
text: 'Hello World'
};
var template = $('#scriptTemplate').html();
var compiledTemplate = Hogan.compile(template);
var renderedTemplate = compiledTemplate.render(data);
var box = document.createElement('div');
box.innerHTML = renderedTemplate;
document.body.insertBefore(box,document.body.childNodes[0]);
</script>
</body>
</html>
使用ID我可以解决模板,但我总是需要一个单独的内联脚本。 : - (
这如何与外部文件一起使用?
答案 0 :(得分:28)
您有两种方法可以加载外部模板:
不幸的是,预编译Hogan.js模板的文档不存在。如果您有Github repo的副本,那么bin
目录中的一个名为hulk
的脚本将完成这项工作。它需要nodejs以及一些npm模块(即nopt
和mkdirp
)。
一旦安装了nodejs
并安装了这些模块,给定模板文件Test.hogan:
<p>Your text here: {{text}}</p>
您可以使用以下命令预编译脚本:
hulk Test.hogan
导致以下文字:
if (!!!templates) var templates = {};
templates["Test"] = new Hogan.Template({code: function (c,p,i) { var t=this;t.b(i=i||"");t.b("<p>Your text here: ");t.b(t.v(t.f("text",c,p,0)));t.b("</p>");return t.fl(); },partials: {}, subs: { }});
将其保存到名为templates.js
现在,在HTML页面中,您将加载该templates.js
文件,并创建一个名为templates
的全局对象,其中编译的模板函数位于“Test”键中。您也可以省略hogan.js
文件,因为那是编译器(现在您的模板已预编译),只需包含发行版中的template.js
文件。
<!DOCTYPE html>
<html>
<head>
<title>Hogan.JS Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="js/template.js"></script>
<script src="js/templates.js"></script>
</head>
<body>
<script>
var data = {
text: 'Hello World'
};
var compiledTemplate = templates['Test'];
var renderedTemplate = compiledTemplate.render(data);
var box = document.createElement('div');
box.innerHTML = renderedTemplate;
document.body.insertBefore(box,document.body.childNodes[0]);
</script>
</body>
</html>
注意:我确实在使用Github repo的当前master
分支时遇到了一些问题,因为它生成的模板使用的构造函数与2.0.0模板中使用的构造函数不同版。 如果您使用hulk
,请务必使用位于template.js
文件夹中的lib
文件。
或者,您可以使用require.js和文本插件。下载它们并将其保存到js
文件夹。然后,您需要添加require
语句来加载模板文本:
<!DOCTYPE html>
<html>
<head>
<script src="js/hogan-2.0.0.js"></script>
<script src="js/require.js"></script>
</head>
<body>
<script>
var data = {
text: 'Hello World'
};
require(['js/text!Test.hogan'], function(testHoganText) {
// testHoganText contains the text of your template
var compiled = Hogan.compile(testHoganText);
var renderedTemplate = compiled.render(data);
var box = document.createElement('div');
box.innerHTML = renderedTemplate;
document.body.insertBefore(box,document.body.childNodes[0]);
});
</script>
</body>
</html>
答案 1 :(得分:5)
如果您不使用节点,或者您想要依赖require.js,还有另一种方法可以很好地运行
您可以简单地使用jQuery $ .get来获取模板文件的路径。所以一个例子如下:
$.get('templates/book.hogan', function(templates){
var extTemplate = $(templates).filter('#book-tpl').html();
var template = Hogan.compile(extTemplate);
var rendered = template.render(datum);
$('.marketing').append(rendered);
});
模板可以只是一个.html文件(我只是使用.hogan),模板中的所有html都应该包含在一个带有唯一ID的脚本标签中,这样你就可以在这里得到id。数据来自on('typeahead:selected'),但这是无关紧要的我只是认为我应该解释,因为它在代码中没有其他参考。
答案 2 :(得分:0)
我有同样的问题,结果采用了与Phuong不同的做事方式,我以为我会分享它。
服务器端,我编译模板并使用以下脚本将其保存到文件中:
// template will be a string
var template = hogan.compile(
'<span>{{text}}</span>',
{ asString: true }
);
// prepare the content of the file we are about to create
var content =
'if(!templates) var templates = {};' +
'templates.example = ' + template + ';';
// write to a file that will be called by the client
fs.writeFile('compiledTemplate.js', content, function(err){
if(err){ console.log('Oops !') }
});
客户端,我这样做:
<!DOCTYPE html>
<html>
<head>
<script src="js/hogan-2.0.0.js"></script>
<script src="js/compiledTemplate.js"></script>
</head>
<body>
<script>
var data = {
text: 'Hello World'
};
var template = new Hogan.Template(templates.example),
html = template.render(data);
var box = document.createElement('div');
box.innerHTML = html;
document.body.insertBefore(box,document.body.childNodes[0]);
</script>
</body>
</html>
我希望它有所帮助!