angularjs弹窗使用($mdDialog)

本文介绍如何在AngularJS中使用$mdDialog创建弹窗。在控制器中配置DialogController,定义hide、cancel和answer方法以进行关闭、取消和传递参数操作。通过调用showMean触发弹窗,模板中利用{{row.healthItemName}}获取参数,并在.then回调中处理逻辑。

首先在controller中配置$mdDialog

/触发弹窗事件/
var DialogController = function($scope, $mdDialog) {
$scope.hide = function() {
$mdDialog.hide();
};
$scope.cancel = function() {
$mdDialog.cancel();
};
$scope.answer = function(answer) {
$mdDialog.hide(answer);
};
};

	/*触发弹窗事件*/
	$scope.showMean = function($event,row) {
		var dScope = $scope.$new(true);
		dScope.row = row;
		$mdDialog.show({
		scope:dScope,
		controller:DialogController,
		//1.直接使用模板内容
		//template: '<md-dialog aria-label="Mango (Fruit)"><md-dialog-content><h2>Using .md-dialog-content class that sets the padding as the spec</h2></md-dialog-content></md-dialog>',
		//2.使用模板文件  
		templateUrl: 'assets/javascripts/physicalExamination/mean.html',
		parent: angular.element(document.body),
		targetEvent: row,
		clickOutsideToClose:true,
		fullscreen: $scope.customFullscreen /*Only for -xs, -sm breakpoints.*/})
		.then(function(answer) {
			$scope.status = ''; 
			}, function() {
				$scope.status = '';});
	};

调用:showMean($event,item),模板文件中使用{{row.healthItemName}}来获取参数

Mango (Fruit)

<md-dialog-content>
  <div class="md-dialog-content">
    <h2>Using .md-dialog-content class that sets the padding as the spec</h2>
    <p>
      The mango is a juicy stone fruit belonging to the genus Mangifera, consisting of numerous tropical fruiting trees, cultivated mostly for edible fruit. The majority of these species are found in nature as wild mangoes. They all belong to the flowering plant family Anacardiaceae. The mango is native to South and Southeast Asia, from where it has been distributed worldwide to become one of the most cultivated fruits in the tropics.
    </p>

    <img style="margin: auto; max-width: 100%;" alt="Lush mango tree" src="img/mangues.jpg">

    <p>
      The highest concentration of Mangifera genus is in the western part of Malesia (Sumatra, Java and Borneo) and in Burma and India. While other Mangifera species (e.g. horse mango, M. foetida) are also grown on a more localized basis, Mangifera indica&mdash;the "common mango" or "Indian mango"&mdash;is the only mango tree commonly cultivated in many tropical and subtropical regions.
    </p>
    <p>
      It originated in Indian subcontinent (present day India and Pakistan) and Burma. It is the national fruit of India, Pakistan, and the Philippines, and the national tree of Bangladesh. In several cultures, its fruit and leaves are ritually used as floral decorations at weddings, public celebrations, and religious ceremonies.
    </p>
  </div>
</md-dialog-content>

<md-dialog-actions layout="row">
  <md-button href="http://en.wikipedia.org/wiki/Mango" target="_blank" md-autofocus>
    More on Wikipedia
  </md-button>
  <span flex></span>
  <md-button ng-click="answer('not useful')">
   Not Useful
  </md-button>
  <md-button ng-click="answer('useful')">
    Useful
  </md-button>
</md-dialog-actions>

其中$scope.hide = function() {
$mdDialog.hide();
};
$scope.cancel = function() {
$mdDialog.cancel();
};
$scope.answer = function(answer) {
$mdDialog.hide(answer);
};
分别对应模板文件中可以调用的隐藏,取消函数,并且可以传递参数在.then(function(answer) {
$scope.status = ‘’;
}, function() {
$scope.status = ‘’;});
};中进行逻辑处理

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值