如何在 onsenui 中使用多个 html 文件

How to use multiple html files in onsenui

在 OnsenUI 中它说:"Instead of creating index.html and services.html in separate files, you can also define the page content in the same page."

我不喜欢将我的整个应用程序放在一个 html 文件中,因此我尝试将每个模板放入一个单独的文件中。这是我的文件结构:

www

-index.html

-services.html

-menu.html


index.html

<!DOCTYPE html>
<html ng-app="app">

  <head>
    <link rel="stylesheet" href="http://onsen.io/OnsenUI/build/css/onsenui.css" />
  <link rel="stylesheet" href="http://onsen.io/OnsenUI/build/css/onsen-css-components.css" />
  <script src="https://code.angularjs.org/1.2.10/angular.js"></script>
  <script src="http://onsen.io/OnsenUI/build/js/onsenui.js"></script>
    <script src="script.js"></script>
     <script>
    angular.module('app', ['onsen']);
    angular.module('app')
      .controller('AppController', function($scope) {
      });
  </script>
  </head>

  <body ng-controller="AppController">
    <ons-navigator var="myNavigator">
    <ons-button ng-click="myNavigator.pushPage('services.html', { animation : 'slide' } );">Pay</ons-button>
    </ons-navigator>
  </body>
</html>

services.html

<ons-template id="services.html">
  <ons-page>
    <ons-list>
      <ons-list-item>Service 1</ons-list-item>
      <ons-list-item>Service 2</ons-list-item>
      <ons-list-item>Service 3</ons-list-item>
    </ons-list>
  </ons-page>
</ons-template>

script.js

angular.module('app', ['onsen']);

    angular.module('app')
      .controller('AppController', function($scope) {
        ons.ready(function() {
          ons.bootstrap();
        });
      });

如果我使用单个 html 文件,这似乎是一个性能问题。在这里,如果我单击按钮,它不会推送到 services.html 页面。如果我在同一个 html 文件中使用 ons-template,这将起作用。我如何在这里使用多个 html 页面。

这是我试过的..

PLUNKER

<ons-template> 仅在 index.html 中是必需的,而不是在单独的文件中。从 services.html 中删除 <ons-template id="services.html"></ons-template>,它应该可以工作。 "id" 将是文件的名称。