$ionicModal
$ionicModal 可以遮住使用者主介面的內容框。
你可以在你的 index 檔案或是其他文件內嵌入以下程式碼(裡面的程式碼可以根據你自己的業務場景相應的改變)。
<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)
#參數 | 類型 | 詳情 |
---|
templateString | 字串 | #範本的字串作為模型的內容。 |
options | 物件 | options 會傳遞到 ionicModal#initialize方法中。 |
返回: 物件, 一個ionicModal控制器的實例。
fromTemplateUrl(templateUrl, options)
參數 | 類型 | #詳情 |
---|
templateUrl | 字串 | 載入範本的url。 |
options | 物件 | #透過ionicModal#initialize方法傳遞物件。 |
傳回: promise物件。 Promises物件是CommonJS工作小組提出的規範,目的是為非同步程式設計提供統一介面。
ionicModal
由$ionicModal服務實例化。
提示:當你完成每個模組清除時,確保呼叫remove()方法,以避免記憶體洩漏。
注意:一個模組從它的初始範圍廣播出 'modal.shown' 和 'modal.hidden' ,把自身當作一個參數來傳遞。
方法
initialize(可选)
建立一個新的模型控制器範例。
參數 | 類型 | 詳情 |
---|
##options | 物件
| 一個選項物件具有一下屬性:{object=} 範圍 子類別的範圍。預設:建立一個$rootScope子類別。 {string=} 動畫 帶有顯示或隱藏的動畫。預設:'slide-in-up' {boolean=} 第一個輸入框取得焦點 當顯示時,模型的第一個輸入元素是否自動取得焦點。預設:false。 {boolean=}backdropClickToClose` 點選背景時是否關閉模型。預設:true。
|
show()
顯示模型實例
hide()
隱藏模型。
remove()
從DOM 移除模型實例並清理。
isShown()
實例
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>php中文网(php.cn)</title>
<link href="http://www.php.cn/static/ionic/css/ionic.min.css" rel="stylesheet">
<script src="http://www.php.cn/static/ionic/js/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>
CSS 程式碼
body {
cursor: url('../style/images/finger.png'), auto;
}
JavaScript 程式碼
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();
};
});