Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Phonegap 应用程序(iOS 和 Android),需要下载一些相当大的文件。我可以使用 FileTransfer.download() 成功下载文件。但是,由于文件太大,我希望能够显示下载进度。有任何想法吗?
不幸的是,该 API不提供进度回调..
您可能想尝试使用 XmlHttpRequest 方式来下载您的文件(对您的文件执行“GET”操作),那里似乎有一个进度事件!然后,您可以使用 BlobBuilder 使用 File API 存储此下载的文件。