gpt4 book ai didi

javascript - 使用 Handlebar.js

转载 作者:数据小太阳 更新时间:2023-10-29 05:30:26 25 4
gpt4 key购买 nike

我实际上是想找一些关于 Handlebar.js 的教程,我发现了这个 http://javascriptplayground.com/blog/2012/05/javascript-templating-handlebars-tutorial

但它实际上并没有按预期工作。

我正在做的是我有一个 index.html 文件,

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="http://cloud.github.com/downloads/wycats/handlebars.js/handlebars-1.0.0.beta.6.js" type="text/javascript" charset="utf-8"></script>
<script src="app.js" type="text/javascript" charset="utf-8"></script>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Messing with Handlebars</title>

</head>
<body>
<script id="ajax-comment" type="text/x-handlebars-template">
<li>
<span class="meta">{{name}} on {{date}}</span>
<p>{{comment}}</p>
</li>
</script>

</body>
</html>

和包含代码的 app.js

var source = $("#ajax-comment").html();
var template = Handlebars.compile(source);
var data = {
name : "Jack",
date : "12/04/12",
comment : "This is a really awesome tutorial. Thanks."
};
$("ul").append(template(data));

但我得到的只是一个空白页。我在这里犯了什么错误吗?详细的解释会有所帮助。

最佳答案

"ul"元素不存在,你必须将它附加到实际存在的东西上。

只需添加一个 <ul></ul> body 某处。

fiddle here

关于javascript - 使用 Handlebar.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12268088/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com