我使用的是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:(父级)
<h1>{heading}</h1>
<p>{article}</p>
{+someBlock/}anotherTemplate.dust:(子/部分)
{>someTemplate/}
{<someBlock}
My custom block content.
{/someBlock}编译模板:(用dustc -./node_modules/dustjs-linkedin/bin/dustc./src/ -o /*.ust templates./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));发布于 2016-09-09 07:09:59
您包含了{>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/templateshttps://stackoverflow.com/questions/39401343
复制相似问题