当用户 select 在 danialfarid/ng-file-upload 插件中未接受文件时显示警告框
show alert box when user select non accepted file in danialfarid/ng-file-upload plugin
我正在使用 danialfarid/ng-file-upload 插件,我设置了 ngf-select
.doc、.pdf 扩展名的指令。它工作正常。
问题是如果用户 select .png 或 jpg 文件,我想显示警告
向用户提示不接受此文件类型的框。感谢您在
提前.
像这样:
<div ngf-select ngf-pattern="'.png,.jpg'" ng-model="file">
<div class="alert" ng-show="file.$error === 'pattern'">file type is not accepted. Acceptable files: {{file.$errorParam}}</div>
我正在使用 danialfarid/ng-file-upload 插件,我设置了 ngf-select .doc、.pdf 扩展名的指令。它工作正常。
问题是如果用户 select .png 或 jpg 文件,我想显示警告 向用户提示不接受此文件类型的框。感谢您在 提前.
像这样:
<div ngf-select ngf-pattern="'.png,.jpg'" ng-model="file">
<div class="alert" ng-show="file.$error === 'pattern'">file type is not accepted. Acceptable files: {{file.$errorParam}}</div>