我正在使用外部模板文件,我想在模板文件中使用部分文件(另一个.mst文件中的.mst文件)
例如,我有带有以下代码的template.mst文件:
{{#comments}}
// Here I want to use another external .mst file
{{/comments}}
所以我在template.mst文件旁边注意了一个comment.mst文件,现在我正在尝试使用{{>comment}}
来调用这个外部模板文件 - 完整示例:
{{#comments}}
{{>comment}}
{{/comments}}
但它不起作用。我尝试使用它一点点,我尝试添加文件扩展名{{>comment.mst}}
,我尝试添加路径{{>temmplates/comment}}
和任何pther选项。
这是我用来加载模板的代码:
$.get('templates/template.mst', function(template) {
var rendered = Mustache.render(template, postData);
$('.inner-container').prepend(rendered);
});
我想我错过了什么,有人可以给我一些提示吗?谢谢!