我使用的是nwjs和dust.js.父模板按预期工作,但如果我尝试加载子(部分)模板,则输出未定义。我错过了让孩子/部分模板工作的东西吗?感谢。
<div id="output"></div>
<script>
const dust = require('dustjs-helpers');
</script>
<!-- Because I can't figure out why require(./dist/templates) errors dust undefined. -->
<script type="text/javascript" src="./dist/templates.js"></script>
<script type="text/javascript">
let templateName = 'src/templates/anotherTemplate',
data = {heading: "This is a heading", article: "Blah blah blah."};
dust.render(templateName, data, (err, out) => {
console.log(out);
document.getElementById('output').innerHTML = out;
});
</script>
模板:
someTemplate.dust :( parent)
<h1>{heading}</h1>
<p>{article}</p>
{+someBlock/}
anotherTemplate.dust :( child / partial)
{>someTemplate/}
{<someBlock}
My custom block content.
{/someBlock}
编译模板: (用dustc编译 - ./node_modules/dustjs-linkedin/bin/dustc ./src/templates/*.dust -o ./dist/templates.js)
(function(dust){dust.register("src\/templates\/anotherTemplate",body_0);var blocks={"someBlock":body_1};function body_0(chk,ctx){ctx=ctx.shiftBlocks(blocks);return chk.p("someTemplate",ctx,ctx,{});}body_0.__dustBody=!0;function body_1(chk,ctx){ctx=ctx.shiftBlocks(blocks);return chk.w("My custom block content.");}body_1.__dustBody=!0;return body_0}(dust));
(function(dust){dust.register("src\/templates\/someTemplate",body_0);function body_0(chk,ctx){return chk.w("<h1>").f(ctx.get(["heading"], false),ctx,"h").w("</h1><p>").f(ctx.get(["article"], false),ctx,"h").w("</p>").b(ctx.getBlock("someBlock"),ctx,{},{});}body_0.__dustBody=!0;return body_0}(dust));
答案 0 :(得分:0)
您已加入{>someTemplate/}
,但您已使用其他名称注册了该模板:src/templates/someTemplate
。
如果您希望Dust在没有src/templates
前缀的情况下注册您的模板,pass the --pwd
parameter to dustc:
./node_modules/dustjs-linkedin/bin/dustc ./src/templates/*.dust -o ./dist/templates.js --pwd=src/templates