我尝试遵循(https://github.com/linkedin/dustjs/wiki/Dust-little-less-know-language-constructs)教程中的示例1。然后,我进行如下测试:

partial.tl

{+greeting} Hola {/greeting}
{+world} World {/world}


Main.html

<script type="text/x-template" id="itemTemplate">
{>partial/}
</script>


但这没有用。如果您知道如何做部分模板,请告诉我如何做。在互联网上很难找到Dust.js教程/指南。

谢谢。

最佳答案

必须先将灰尘编译为JavaScript,然后才能执行它。 .tl和.dust文件只是源形式。如果您在客户端环境中,这里有一个很好的解释。 Basic Example of Client Side Templating with Dust.js

关于javascript - Dust.js部分模板,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24323859/

10-12 05:50