当前位置: 代码迷 >> Android >> 离子简单应用无法在移动设备上运行
  详细解决方案

离子简单应用无法在移动设备上运行

热度:98   发布时间:2023-08-04 12:12:39.0

我正在使用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>

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

任何可能仅导致移动电话黑屏的想法吗? 我听说这可能是由于某些夹杂物我做得不好。 但是,我对Ionic和Angular都是陌生的(jQuery爱好者试图敞开胸怀),因此很难找到确切的原因。

非常感谢你的帮助。

在应用程序的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>
  相关解决方案