html input type=file — Select a file from iCloud

有些话、适合烂在心里 提交于 2019-12-13 01:44:53

问题


I'm developing a Cordova / PhoneGap-based application that has an embedded text editor. To access selected files, I'm having the user browse the mobile device by using the html <input type=file> element:

<div class="control-row">
  <label for="selFile" class="topcoat-button">{{t 'view.lblSelect'}}</label>
  <input type="file" value="" id="selFile" multiple>
</div>

On iOS, however, clicking on the input element brings up Photos instead of allowing me to pick iCloud documents. Is there a way to select iCloud documents from Cordova / PhoneGap?


回答1:


It's 2017 August Even I was facing the same problem after some research I found an exact solution for this. Go to Xcode ->Select your project -> Capabilities -> iCloud and enable it. Now it will work.




回答2:


The attr "multiple" is not compatibile with icloud file, you can try to remove it and it will be work fine,but you can only select one file of couse

<div class="control-row">
  <label for="selFile" class="topcoat-button">{{t 'view.lblSelect'}}</label>
  <input type="file" value="" id="selFile" >
</div>


来源:https://stackoverflow.com/questions/29548601/html-input-type-file-select-a-file-from-icloud

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!