是否必须使用控制器进行ng-include

时间:2015-04-27 10:41:25

标签: angularjs

我正在尝试创建模板的多个文档。

我有一个导航,我想从不同的页面加载。这就是我的所作所为。

<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在这里不起作用。有人知道原因吗?

1 个答案:

答案 0 :(得分:0)

您需要为ng-include添加单引号:

<ons-page modifier="menu-page" ng-include="'menu.html'"></ons-template>