邮寄后如何清除表格?

时间:2016-01-06 00:28:21

标签: angularjs ionic-framework ionic

我正在使用Ionic创建一个应用程序。发送表单的值后我想清除表单,但我不能这样做。

我怎么能这样做?

形式

<form name="Empresa">
    <div class="list">
                                <label class="item item-input" 
                                       ng-class="{'has-errors':Empresa.nomeemp.$invalid, 'no-errors':Empresa.nomeemp.$valid}">
                                    <input type="text" 
                                           placeholder="Nome" 
                                           name="nomeemp" 
                                           ng-model="Empresa.nome" 
                                           ng-required="true">
                                </label>
                                <div class="error-container"
                                     ng-show="(Empresa.nomeemp.$dirty || !Empresa.nomeemp.$pristine)"
                                     ng-messages="Empresa.nomeemp.$error">
                                    <div ng-messages-include="templates/form-errors.html"></div>
                                </div>                            
    </div>

<button type="button" class="button button-block button-energized"  
                    ng-disabled="Empresa.$invalid" ng-click="addEmpresa(Empresa);">Cadastrar</button>

</form>

控制器

$scope.addEmpresa = function(Empresa){      
      var _pathFile = document.getElementById("smallimage").src;
      var _fileName = _pathFile.substr(_pathFile.lastIndexOf('/') + 1);
      if(_fileName === 'no-image.png'){
        $ionicLoading.show({ template: APP_MESSAGES.escolhaImagem, noBackdrop: true, duration: 2000 });
      }else{
          $ionicLoading.show();
          EmpresaAPIService.addEmpresa(Empresa).then(function (data) {
            $ionicLoading.hide();
            var retorno = JSON.parse(data.response);
            if(retorno.status === 0){
              $ionicLoading.show({ template: retorno.msg, noBackdrop: true, duration: 2000 });
            }
            if(retorno.status === 1){ 
              //clear form
              delete Empresa;           
              Empresa.$setPristine();
              Empresa.$setUntouched(); 

              $ionicLoading.show({ template: retorno.msg, noBackdrop: true, duration: 2000 });

            }

          }, function (err) {        
             $ionicLoading.hide();           
          }, function (progress) {
             // PROGRESS HANDLING GOES HERE
          });

      }
    }

1 个答案:

答案 0 :(得分:1)

在执行提交逻辑后的控制器中,将.enumerate()设置为应用程序中与表单绑定的内容。

编辑:$scope.Empresa.noma = '';也应该有用。