一個ionic的微博demo源碼分析

最近幾天在匯智網上學習了一些ionic的基礎知識。可是仍是有點暈。今天在網上看到一個很不錯的demo。在這裏記錄一下。css

1. index.html

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <title></title>

    <link href="lib/ionic/css/ionic.css" rel="stylesheet">
    <link href="css/style.css" rel="stylesheet">

    <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above若是你想使用sass的話,要把下面這句話加進去
    <link href="css/ionic.app.css" rel="stylesheet">
    -->

    <!-- ionic/angularjs js -->
    <script src="lib/ionic/js/ionic.bundle.js"></script>

    <!-- cordova script (this will be a 404 during development)有了cordova script會報錯404 -->
    <script src="cordova.js"></script>

    <!-- your app's js你app的js包含 -->
    <script src="js/app.js"></script>
    <script src="js/controllers.js"></script>
  </head>

  <body ng-app="starter" class="platform-android platform-cordova platform-webview">
<!--在body中,定義了ng-app是starter-->
    <ion-nav-view></ion-nav-view>
  </body>

</html>

2.列表項目app.js

接下來咱們看一下app.js文件,這是程序的入口js文件。
爲了理解起來簡單,我將程序分段貼在這裏,並對它進行備註。html

在書上看到一句話頗有用:module.config和module.run方法註冊了在angularjs應用的生命週期的關鍵時刻所調用的函數。
傳給config方法的函數在當前模塊被加載後調用
傳給run方法的函數在全部模塊被加載後調用android

2.1.angular.module

angular.module('starter', ['ionic', 'starter.controllers'])

這句話是定義了一個module,它有兩個參數:angularjs

  1. starter是與HTML文件中的ng-app對應的。web

  2. []中的內容是依賴注入。這個Module被依賴注入了兩個文件,一個是ionic,一個是starter.controllers。apache

2.2.run方法

.run(function($ionicPlatform) {
  $ionicPlatform.ready(function() {
    // Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
    // for form inputs)
    if(window.cordova && window.cordova.plugins.Keyboard) {
      cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
    }
    if(window.StatusBar) {
      // org.apache.cordova.statusbar required
      StatusBar.styleDefault();
    }
  });
})

上面這段是.run入口方法。在程序啓動時調用,能夠在裏面作一些初始化的東西。gulp

run方法傳入一個函數,這就是初始化程序的函數function($ionicPlatform)promise

函數被注入$ionicPlatform(一個angular抽象的ionic.Platform。用來檢測當前的平臺,以及諸如在PhoneGap/Cordova中覆蓋Android後退按鈕。)sass

2.2.1.ready()

接下來咱們一句句分析。app

ready([callback])

這是 $ionicPlatform的一個函數。一旦設備就緒,則觸發一個回調函數,或若是該設備已經就緒,則當即調用。
參數callback,可選,它是一個觸發的function

返回: promise 當設備就緒後,就會解決一個 promise。

2.2.2.if

if(window.cordova && window.cordova.plugins.Keyboard) {
      cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
    }
這句話只是判斷一下cordova環境以及鍵盤是否就位

if(window.StatusBar) {
      // org.apache.cordova.statusbar required
      StatusBar.styleDefault();
    }
判斷org.apache.cordova.statusbar設備是否就位

2.3.config方法

.config(function($stateProvider, $urlRouterProvider) {//配置,注入了狀態機,ui-router
  $stateProvider//狀態機開始

    .state('app', {   //state的第一個參數——app叫作狀態名
      url: "/app",//匹配的url, 咱們必需要地址欄輸入www.xx.com/app,纔會加載對應的模板而不是輸入app,它僅僅是一個名字而已。
      abstract: true,//代表此狀態不能被顯性激活,只能被子狀態隱性激活
      templateUrl: "templates/menu.html",//對應的模板
      controller: 'AppCtrl'//控制器
    })

    .state('app.feed', {
      url: "/feed",
  // **views  用在該狀態下有多個 ion-nav-view 的狀況,能夠對不一樣的ion-nav-view使用特定的 template,** controller, resolve data
  // 絕對 view 使用 '@' 符號來區別,好比 'foo@bar' 代表名爲 'foo' 的 ui-view 使用了 'bar' 狀態的模板(template),相對 view 則無
      views: {
        'menuContent' :{
          templateUrl: "templates/social/feed.html"
        }
      }
    })

    .state('app.start', {
      url: "/start",
      views: {
        'menuContent' :{
          templateUrl: "templates/social/start-fullscreen.html"
        }
      }
    })

.config方法接受一個函數,該函數在調用方法的模塊被加載後調用

2.3.1.$route路由相關

$route服務提供的核心功能:設置URL與視圖文件名稱之間的映射。也叫URL路由。當$location.path方法返回的值匹配映射其中之一時,與之相應的視圖文件就被載入並顯示。用$route服務的提供器$routeProvider定義映射。

2.3.2.$ui-route狀態機

找了半天,沒找到什麼有用的資料。暫且認爲這種狀態機是一種固定的格式。吧。

3.controllers.js

angular.module('starter.controllers', [])
//至關於myapp = angular.module('starter.controllers', [])
//myapp.controller('AppCtrl', function($scope, $ionicModal, $timeout){
.controller('AppCtrl', function($scope, $ionicModal, $timeout) {


  // Form data for the login modal
  $scope.loginData = {};

  // Create the login modal that we will use later
  $ionicModal.fromTemplateUrl('templates/social/login.html', {
    scope: $scope
  }).then(function(modal) {
    $scope.modal = modal;
  });

  // Triggered in the login modal to close it
  $scope.closeLogin = function() {
    $scope.modal.hide();
  };

  // Open the login modal
  $scope.login = function() {
    $scope.modal.show();
  };

  // Perform the login action when the user submits the login form
  $scope.doLogin = function() {
    console.log('Doing login', $scope.loginData);

    // Simulate a login delay. Remove this and replace with your login
    // code if using a login system
    $timeout(function() {
      $scope.closeLogin();
    }, 1000);
  };
})

3.1controller定義

angular.module('starter.controllers', [])
  .controller('AppCtrl', function($scope, $ionicModal, $timeout)

至關於:

myapp = angular.module('starter.controllers', [])
myapp.controller('AppCtrl', function($scope, $ionicModal, $timeout)
控制器接受兩個參數,控制器名,工廠函數(設置控制器並使其就緒)
函數被注入依賴,`$scope, $ionicModal, $timeout`

理解依賴注入

一個angularjs應用程序中的一些組件將會依賴於其餘組件,依賴注入改變了函數參數的用途。

3.2 內部函數分析

肥腸簡單。就不用寫了。

相關文章
相關標籤/搜索