2

我已经将我的 jQuery/javascript 应用程序与 Android 的 phonegap 打包在一起,以后计划在 iOS/BlackBerry 上执行此操作。在这个项目中,我从 phonegap API 实现了 FileTransfer.download 函数来从服务器下载文件。该功能成功运行,但它阻止我导航到应用程序中的其他页面,直到下载完成。

也许我在文档中遗漏了一些东西:让 FileTransfer.download 在后台工作以便我可以自由地逐页导航的最佳方法是什么?是否有可能不诉诸特定于设备的代码?

4

1 回答 1

1

The solution I'm settling for is creating a plugin to call native code that does the downloading. In Android for example, I can create an AsyncTask to do the downloading in a phonegap plugin. I guess I'll be required to do something similar in iOS/BlackBerry/etc. Still welcoming others' solutions

于 2013-03-08T22:19:30.110 回答