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.
我正在尝试创建一个从 Internet 下载各种文件(docx、pptx 等)的应用程序。
下载部分工作正常。文件正在下载到应用程序的 Documents 文件夹中。
现在我需要在它们的默认应用程序中打开这些文件(DOcumentTogo, Office SUits等等)。
DOcumentTogo, Office SUits
任何人都可以建议一个phonegap/cordova插件iOS甚至代码片段来打开文件也可以。
phonegap/cordova
iOS
我会设法将它添加到插件中。
在 html 5 中使用 object 元素,它可以帮助你,例如:
> <object width="400" height="400" data="p.pdf"></object>
它将在我们的应用程序中显示 pdf 文件(在 ios 中测试)