在角度js

时间:2015-09-07 13:53:32

标签: angularjs forms validation file-upload

如果用户点击提交而不上传任何文件,我需要验证我的文件上传并显示错误消息。我的代码是

<div class=" form-label form-label-responsive col-sm-4 text-right" ><span>Upload a file</span></div>
 <div class="form-group col-sm-6" ng-class="{{(_DominoForm['%%File.ca257e9d000513c5.c758deaebd88bc7fca257ea40005f6fe.$Body.0.70'].$invalid)? 'has-error' : 'has-success'}}">


    <input class= "form-control form-input" data-file id="%%File.ca257e9d000513c5.c758deaebd88bc7fca257ea40005f6fe.$Body.0.70" name="%%File.ca257e9d000513c5.c758deaebd88bc7fca257ea40005f6fe.$Body.0.70" ng-model="my_file_model" type="file" 
    required="true">


    <p ng-show="_DominoForm['%%File.ca257e9d000513c5.c758deaebd88bc7fca257ea40005f6fe.$Body.0.70'].$error.required  ">

    <span class="icon icon-size-sm icon-alert" aria-labelledby="error-text"></span>

    <span class="ng-binding"> Please select a file </span>

  </p>

我的表单名称是_DominoForm。我不知道我做错了什么。 点击提交时没有显示错误。 任何帮助将不胜感激。

0 个答案:

没有答案