浏览并选择要在 PhoneGap 移动应用程序中的 FileTransfer() 中使用的文件

发布于 2025-01-07 06:54:55 字数 158 浏览 0 评论 0原文

我们如何浏览手机内存和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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人疚 2025-01-14 06:54:55

您可以使用浏览并选择文件

this.photoDestinationType=navigator.camera.DestinationType;
var source =  navigator.camera.PictureSourceType.PHOTOLIBRARY;
navigator.camera.getPicture(successFn, errorFn, { quality: 50,
        destinationType: this.photoDestinationType.FILE_URI,
        sourceType: source,
        mediaType: navigator.camera.MediaType.ALLMEDIA  });

这将打开选项,您可以在其中导航并选择文件
选择它会给您一个回调,您可以在其中接收文件路径,然后将其传递给 FileTransfer()。希望有帮助。

You can browse and select a file using

this.photoDestinationType=navigator.camera.DestinationType;
var source =  navigator.camera.PictureSourceType.PHOTOLIBRARY;
navigator.camera.getPicture(successFn, errorFn, { quality: 50,
        destinationType: this.photoDestinationType.FILE_URI,
        sourceType: source,
        mediaType: navigator.camera.MediaType.ALLMEDIA  });

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文