离子简单的应用程序不适用于移动设备

时间:2017-02-16 11:03:12

标签: javascript android html angularjs ionic-framework

我正在使用Ionic开发一个非常简单的应用程序,以便学习如何使用该工具。它暗示了标签,我按照官方文档中给出的标签进行了教程。它在我的浏览器上工作得非常好,但我有死亡的空白屏幕"在编译时在我的Android设备上。

这是我的简化代码:

的index.html

<html ng-app="ionicApp">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <title>Home</title>
    <link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet">
    <script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script>
  </head>

  <body>
    <ion-nav-bar class="bar-positive">
      <ion-nav-back-button>
      </ion-nav-back-button>
    </ion-nav-bar>

    <ion-nav-view></ion-nav-view>

    <script id="templates/tabs.html" type="text/ng-template">
      <ion-tabs class="tabs-icon-top tabs-positive">
        <ion-tab title="Home" icon="ion-home" href="#/tab/home">
          <ion-nav-view name="home-tab"></ion-nav-view>
        </ion-tab>
      </ion-tabs>
    </script>

    <script id="templates/home.html" type="text/ng-template">
      <ion-view view-title="Menu Principal">
        <ion-content class="padding">
          <a href="#/tab/sceneTest"><img class="popphoto" src="b_menu1.png"></a>
        </ion-content>
      </ion-view>
    </script>

  </body>

JS部分:

  <script>
  angular.module('ionicApp', ['ionic'])

  .config(function($stateProvider, $urlRouterProvider) {

    $stateProvider
      .state('tabs', {
        url: "/tab",
        abstract: true,
        templateUrl: "templates/tabs.html"
      })

      .state('tabs.home', {
        url: "/home",
        views: {
          'home-tab': {
            templateUrl: "templates/home.html",
            controller: 'HomeTabCtrl'
          }
        }
      })

      .state('tabs.sceneTest', {
        url: "/sceneTest",
         views: {
          'home-tab': {
            templateUrl: "sceneTest.html"
          }
        }
      })

     $urlRouterProvider.otherwise("/tab/home");
  })

  .controller('HomeTabCtrl', function($scope) {
    console.log('HomeTabCtrl');
  });
  </script>
</html>

&#34; sceneTest.html&#34; file与index.html位于同一路径中。我不认为它会导致错误,因为它的内容到目前为止非常简单(只是包含在离子视图中的文本)。

是否知道可能导致手机空白屏幕的原因?我听说可能是因为我没有做好一些内容。但是,我对Ionic和Angular都很陌生(jQuery粉丝试图打开他的脑海),所以很难找到确切的原因。

非常感谢你的帮助。

1 个答案:

答案 0 :(得分:1)

使用应用的www文件夹

调用文件

错误的方式

<link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet">
<script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script>

好方法

<link href="lib/ionic/css/ionic.css" rel="stylesheet">
<script src="lib/ionic/js/ionic.bundle.js"></script>