如何设置弹出消息,例如'消息已成功发送'一旦函数在这种情况下运行完毕(smsAll)?
$scope.smsAll = function() {
$scope.smsStatusZeroF2F = "";
$scope.smsStatusMoreThanTenF2F = "";
$scope.smsStatusBetween14F2F = "";
if ($scope.isSMSzeroF2F) {
$scope.smsZeroF2F();
}
if ($scope.isSMSmoreThanTenF2F) {
$scope.smsMoreThanTenF2F();
}
if ($scope.isSMSBet14F2F) {
$scope.smsBetween14F2F();
}
if ($scope.isSMSZeroPSL) {
$scope.smsZeroPSL();
}
if ($scope.isSMStransAndsaas) {
$scope.smsZeroTransOrSaasReport();
}
};
<button type="button" class="btn btn-primary" ng-click="smsAll()">Send SMS for selected</button>
答案 0 :(得分:0)
为什么不使用一些角度通知模块? 就像this一样 源代码为here
或使用Bower安装
bower install angular-notify --save
将dist / angular-notify.js和dist / angular-notify.css添加到index.html。
将cgNotify添加为模块的模块依赖项。
angular.module('your_app', ['cgNotify']);
用法:
function myController($scope,notify){ // <-- Inject notify
notify('Your notification message'); // <-- Call notify with your message
notify({ message:'My message', templateUrl:'my_template.html'} );
}