Dust js partials / child 模板输出未定义

Dust js partials / child templaes output undefined

我正在使用 nwjs 和 dust.js。 Parent 模板按预期工作,但如果我尝试加载 child(部分)模板,则输出未定义。我是否遗漏了一些让 child/partial 模板正常工作的东西?谢谢。

<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));

您包含 {>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