显示成功/失败消息,而不在AngularJS中引用ID

时间:2013-10-21 19:01:49

标签: angularjs

我正在使用AngularJS创建一个简单的表单来向数据库添加新记录。所以我在控制器中通过ajax提交表单,并成功添加了一条新记录。

我的问题是,向用户显示成功确认的Angular方式是什么。如果这是vanilla JS,我只会隐藏表单,同时会显示以前隐藏的成功消息。然后在几秒钟后淡出消息并将表单重新输入。

在Angular中有更好的方法吗?除了$('形式#myForm')。hide()和$('div#successMessage')。show()?

2 个答案:

答案 0 :(得分:8)

您可以使用ngShow指令来完成此任务。例如,如果您在成功提交后将$scope.submissionSuccess设置为true,则可以在模板中添加以下内容:

<div ng-show="submissionSuccess">It worked!</div>

答案 1 :(得分:2)

  

在Angular中有更好的方法吗?除了$('形式#myForm')。hide()和$('div#successMessage')。show()?

是的,您可以使用ng-showng-hide

假设你有一些方法getRunningState()根据某个状态返回1到4之间的整数。所以我们可以这样写:

 <span ng-show="getRunningState() == 1">Running...</span>
 <span ng-show="getRunningState() == 2">Paused</span>
 <span ng-show="getRunningState() == 3">Stopped</span>
 <span ng-show="getRunningState() == 4">Finished!</span>

在这种情况下,只显示4个选项中的一个

作为旁注

如果您有兴趣将成功/失败放入对话框(我的观点看起来相当不错),这里的示例基于:

  • bootstrap的CSS
  • UI-自举

enter image description here

function DialogDemoCtrl($scope, $dialog, $http){

  // Inlined template for demo
  var t = 
          '<div class="modal-body">'+
          '<div class="alert alert-success" ng-show="true">'+
'   <button type="button" class="close" data-ng-click="close(result)" >x</button>'+
'   <strong>Done!</strong> {{successTextAlert}}'+
' </div></div>';

     $scope.successTextAlert = "Some content";
     $scope.showSuccessAlert = true;     


  $scope.opts = {
    backdrop: true,
    keyboard: true,
    backdropClick: true,
    template:  t, // OR: templateUrl: 'path/to/view.html',
    controller: 'TestDialogController',
    resolve: {}
  };

  $scope.openDialog = function(){

    $scope.opts.resolve.successTextAlert = function() {
            return angular.copy($scope.successTextAlert);
        }

         $scope.opts.resolve.showSuccessAlert = function() {
            return angular.copy($scope.showSuccessAlert);
        }

    var d = $dialog.dialog($scope.opts);
    d.open().then(function(result){
      if(result)
      {
        alert('dialog closed with result: ' + result);
      }
      else{
        alert('dialog closed');
      }
    });
  };

}

在我的情况下,我显示“成功”(bootstrap)

演示 Plunker

您只需更改一行即可更改对话框类型/颜色:

<div class="alert alert-success">...</div>
<div class="alert alert-info">...</div>
<div class="alert alert-warning">...</div>
<div class="alert alert-danger">...</div>