从基于 Javascript 的 PhoneGap 应用程序导出文件 - 选项或想法?
我目前正在使用jquery 移动框架和phonegap 编写一个移动应用程序(希望是iOS 或android)。 它需要以某种方式导出/发送 csv 文件给用户,但我有兴趣听到有关最佳方法的想法或建议。如果这可以在应用程序的 js 端完成,那将是理想的,因为这是我最熟悉的。我考虑过的几个选项是:
- 使用 google docs api 上传文件
- 将文件写入文件系统(然后通过 iTunes 导出)
我对此很陌生,因此非常感谢收到任何建议!感谢您的帮助
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用一些选项,具体取决于您希望它如何工作。
主要选项是
There are a few options that you could use depending on how you want it to work.
The main options would be to
正如 Dave 指出的,您可以使用 FILE API 写入文件。我已经使用 iO 上的文件 api 来编写自定义日志文件,到目前为止还没有发现任何问题。
As Dave pointed out you can write files with the FILE API. I have used the file api on iOs to write custom log files and havent found any yikes so far.