标签: mustache
我可以使用命令行渲染使用partials的Mustache模板:
mustache -p partial.mustache dataView.json myTemplate.mustache
我不需要dataView.json,所以我创建了这个文件,里面有两个字符:{}。
dataView.json
{}
这看起来很麻烦。有没有一种方法可以更优雅地呈现此模板,而无需创建基本上我不需要的json文件?
json