我正在使用角度文件上传(nv-file-select)上传文件,现在我的问题是如何限制某些文件格式,以便用户只能看到doc / docx和xls / xlsx格式的文件。
<input type="file" nv-file-select uploader="vm.uploader"
name="uploadFile"
id="file1"
ng-model="vm.fileInfo.filename"
ng-click="vm.onFileClick()" / >
请帮助我!
答案 0 :(得分:1)
试试这个
<input type="file" accept=".xls,.xlsx" />