ng-file-upload无法接受.apk模式

时间:2016-08-16 17:13:45

标签: javascript angularjs html5 ionic-framework

我想将apk文件上传到文件上传器中。我正在使用https://github.com/danialfarid/ng-file-upload进行文件上传。请展开下面的代码段以查看整个代码段。



<input class="manage-apks-featured-images ion-plus-circled" placeholder="upload" type="file" name="apk" ngf-select="onChangePackageApk($files)" ng-model="newpackage.apk" ngf-pattern="'.apk'" ngf-accept="'.apk'" ngf-max-size="15MB" required ngf-model-invalid="errorFile"
/>
&#13;
&#13;
&#13;

打开的窗口,我可以通过单击上面的#34来浏览系统中的文件;选择文件&#34;按钮未被.apk文件格式化/过滤。我怎么能让它只接受apk文件?

1 个答案:

答案 0 :(得分:0)

使用accept=".apk"属性。

&#13;
&#13;
<input class="manage-apks-featured-images ion-plus-circled" placeholder="upload" type="file" name="apk" ngf-select="onChangePackageApk($files)" ng-model="newpackage.apk" accept=".apk" ngf-accept="'.apk'" ngf-max-size="15MB" required ngf-model-invalid="errorFile"
/>
&#13;
&#13;
&#13;