我正在尝试创建模板的多个文档。
我有一个导航,我想从不同的页面加载。这就是我的所作所为。
<ons-template id="menu.html">
<ons-page modifier="menu-page" ng-include="menuPage.html">
//HTML tags which will be called from menuPage.html
</ons-page>
</ons-template>
但似乎ng-include在这里不起作用。有人知道原因吗?
答案 0 :(得分:0)
您需要为ng-include
添加单引号:
<ons-page modifier="menu-page" ng-include="'menu.html'"></ons-template>