浏览并选择要在 PhoneGap 移动应用程序中的 FileTransfer() 中使用的文件
我们如何浏览手机内存和SD卡中的文件,然后选择一个供PhoneGap
中的FileTransfer()
函数使用。
我找到了加载和发送图像的示例,但没有什么可以帮助我选择其他类型的文件。
我正在将文件发送到 PHP 文件。
How can we browse the phone memory and SD card for files and then select one to be used by the FileTransfer()
function in PhoneGap
.
I found out examples to load and send images, but nothing that would help me in selecting other type of files.
I'm sending the files to a PHP file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用浏览并选择文件
这将打开选项,您可以在其中导航并选择文件
选择它会给您一个回调,您可以在其中接收文件路径,然后将其传递给 FileTransfer()。希望有帮助。
You can browse and select a file using
This opens up the options where you can navigate and choose a file
on choosing it gives you a callback where you can receive the file path and then later pass it to FileTransfer(). hope that helps.