$ionicModal 可以遮住用戶主界面的內容框。
你可以在你的 index 文件或者是其他文件內嵌入以下代碼(里面的代碼可以根據你自己的業(yè)務場景相應的改變)。
<script id="my-modal.html" type="text/ng-template"> <ion-modal-view> <ion-header-bar> <h1 class="title">My Modal title</h1> </ion-header-bar> <ion-content> Hello! </ion-content> </ion-modal-view> </script>
然后你就可以在你的 Controller 里面的注入 $ionicModal 。然后調用你剛剛寫入的模板,進行初始化操作。就像下面的代碼:
angular.module('testApp', ['ionic']) .controller('MyController', function($scope, $ionicModal) { $ionicModal.fromTemplateUrl('my-modal.html', { scope: $scope, animation: 'slide-in-up' }).then(function(modal) { $scope.modal = modal; }); $scope.openModal = function() { $scope.modal.show(); }; $scope.closeModal = function() { $scope.modal.hide(); }; //Cleanup the modal when we're done with it! $scope.$on('$destroy', function() { $scope.modal.remove(); }); // Execute action on hide modal $scope.$on('modal.hidden', function() { // Execute action }); // Execute action on remove modal $scope.$on('modal.removed', function() { // Execute action }); });
fromTemplate(templateString, options)
參數(shù) | 類型 | 詳情 |
---|---|---|
templateString | 字符串 | 模板的字符串作為模態(tài)窗口的內容。 |
options | 對象 | options 會傳遞到 ionicModal#initialize方法中。 |
返回: 對象, 一個ionicModal控制器的實例。
fromTemplateUrl(templateUrl, options)
參數(shù) | 類型 | 詳情 |
---|---|---|
templateUrl | 字符串 | 載入模板的url。 |
options | 對象 | 通過ionicModal#initialize方法傳遞對象。 |
返回: promise對象。Promises對象是CommonJS工作組提出的一種規(guī)范,目的是為異步編程提供統(tǒng)一接口。
由$ionicModal服務實例化。
提示:當你完成每個模塊清除時,確保調用remove()方法,以避免內存泄漏。
注意:一個模塊從它的初始范圍廣播出 'modal.shown' 和 'modal.hidden' ,把自身作為一個參數(shù)來傳遞。
initialize(可選)
創(chuàng)建一個新的模態(tài)窗口控制器示例。
參數(shù) | 類型 | 詳情 |
---|---|---|
options | 對象 | 一個選項對象具有一下屬性:
|
show()
顯示模態(tài)窗口實例
promise
promise對象,在模態(tài)窗口完成動畫后得到解析hide()
隱藏模態(tài)窗口。
promise
promise對象,在模態(tài)窗口完成動畫后得到解析remove()
從 DOM 中移除模態(tài)窗口實例并清理。
promise
promise對象,在模態(tài)窗口完成動畫后得到解析isShown()
<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>W3Cschool教程(w3cschool.cn)</title> <link href="http://o2fo.com/statics/demosource/ionic.min.css" rel="stylesheet"> <script src="http://o2fo.com/statics/demosource/ionic.bundle.min.js"></script> </head> <body ng-controller="AppCtrl"> <ion-header-bar class="bar-positive"> <h1 class="title">Contacts</h1> <div class="buttons"> <button class="button button-icon ion-compose" ng-click="modal.show()"> </button> </div> </ion-header-bar> <ion-content> <ion-list> <ion-item ng-repeat="contact in contacts"> {{contact.name}} </ion-item> </ion-list> </ion-content> <script id="templates/modal.html" type="text/ng-template"> <ion-modal-view> <ion-header-bar class="bar bar-header bar-positive"> <h1 class="title">New Contact</h1> <button class="button button-clear button-primary" ng-click="modal.hide()">Cancel</button> </ion-header-bar> <ion-content class="padding"> <div class="list"> <label class="item item-input"> <span class="input-label">First Name</span> <input ng-model="newUser.firstName" type="text"> </label> <label class="item item-input"> <span class="input-label">Last Name</span> <input ng-model="newUser.lastName" type="text"> </label> <label class="item item-input"> <span class="input-label">Email</span> <input ng-model="newUser.email" type="text"> </label> <button class="button button-full button-positive" ng-click="createContact(newUser)">Create</button> </div> </ion-content> </ion-modal-view> </script> </body> </html>
body { cursor: url('https://w3cschool.cn/statics/demosource/finger.png'), auto; }
angular.module('ionicApp', ['ionic']) .controller('AppCtrl', function($scope, $ionicModal) { $scope.contacts = [ { name: 'Gordon Freeman' }, { name: 'Barney Calhoun' }, { name: 'Lamarr the Headcrab' }, ]; $ionicModal.fromTemplateUrl('templates/modal.html', { scope: $scope }).then(function(modal) { $scope.modal = modal; }); $scope.createContact = function(u) { $scope.contacts.push({ name: u.firstName + ' ' + u.lastName }); $scope.modal.hide(); }; });
更多建議: