我正在为Windows Phone 8.1编写应用程序,但我遇到了问题。我为Windows手机配置了Cordova和AngularJS,但它不能使用html标签上传文件。
我在index.html中有这样的东西:
<body ng-app="sample-app" ng-csp ng-controller="appController" ng-file-drop="filesDropped($files)">
<h1>SAMPLE</h1>
<small>{{model}}</small>
<button ng-click="onClick()">scan</button>
<br><br>
<input type="file" multiple ng-file-select="filesDropped($files)">
问题是上传按钮不起作用。 另外,这个html标签适用于IO和Android。
有合理的解决方案吗?
谢谢!
答案 0 :(得分:0)
Windows Phone WebView不支持此功能。 一个选项是截取输入的 change 事件,然后调用cordova文件选择器,如下所示: https://stackoverflow.com/a/15872242/1104494