我对部分和覆盖模板几乎没有问题。为此,我使用了以下文件夹结构。
项目根
dust-core-0.6.0.min.js
jquery.js
test.html
partial.tl
main_without_override.tl
的内容partial.tl:
{+greeting} Hola {/greeting}
{+world} World {/world}
的内容main_without_override.tl
:
{>partial/}
的内容test.html
:
<!DOCTYPE html>
<html>
<head>
<script src="dust-core-0.6.0.min.js" type="text/javascript"></script>
<script src="jq.js" type="text/javascript"></script>
</head>
<body>
</body>
<script>
$.get('main_without_override.tl', function(){
console.log(arguments);
})
</script>
</html>
在index.html
我试图得到main_without_override.tl
它的说法 404 时。但我确定文件在那里。firebug 显示的路径是正确的。但是浏览器显示 404。
我想知道
- 如何得到这个
main_without_override.tl
- 在浏览器中应用模板
main_without_override.tl
并渲染。
我在谷歌搜索了大多数示例只给出了语法。有人可以帮我渲染main_without_override.tl
模板吗?