2014-10-08 77 views
2

我正在爲Windows Phone 8.1編寫應用程序,我遇到了問題。我爲Windows Phone配置了Cordova和AngularJS,但無法使用html標籤上傳文件。科爾多瓦Windows Phone 8.1上傳文件

我有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。

有沒有一個明智的解決方案?

謝謝!

回答