使用partials或template继承,是否真的不可能从子目录引用.mustache
文件?
换句话说,拥有像
这样的目录结构|- views
||- templates
|||- base.mustache
||- somePage.mustache
其中somePage.mustache
是
{{< templates/base }}
{{$content}}
...
{{/content}}
{{/ template/super }}
或
{{> templates/base}}
...
如果基本胡子文件不在子目录中,但不适用于"templates/"
,则两者都有效。这真的不可能使用Hogan.js或者我错过了一些东西......因为我已经尝试过任何我能想到的逻辑变化......并且官方规范并没有真正解决这个应该如何工作的问题。