1

I'm currently writing a mobile app (hopefully iOS or android) using the jquery mobile framework and phonegap. It'll need to export/send csv files in some way to the users, but I'd be interested to hear ideas or suggestions about the best way of doing so. If this can be done on the js side of the app that'd be ideal as it's what I'm most familiar with. A couple of options I've considered are:

  • Uploading the file using the google docs api
  • Writing the file to the file system (then export e.g. via iTunes)

I'm new to this so any suggestions gratefully received! Thanks for your help

4

2 回答 2

2

根据您希望它的工作方式,您可以使用一些选项。

主要的选择是

  1. 使用文件 API (http://docs.phonegap.com/phonegap_file_file.md.html#File) 将文件存储在设备的文件系统上。
  2. 使用标准 XMLHttpRequest 将文件上传到服务器。
  3. 在您感兴趣的每个平台上编写一个可以连接到 Google 文档的本机 PhoneGap 插件。
于 2011-01-12T16:47:43.177 回答
1

正如 Dave 指出的,您可以使用 FILE API 编写文件。我已经使用 iO 上的文件 api 来编写自定义日志文件,但到目前为止还没有发现任何问题。

于 2011-01-19T13:37:17.753 回答