将本地 HTML 代码注入 iPhone Phonegap webapp
我有一些 HTML 代码,仅在需要时才将其注入到主 HTML 文档中。 (首先阻止此代码有望使应用程序加载速度更快)因为它是phonegap包装的,我猜文件在设备上本地运行,并且解决方案必须处理这个问题。
这样做的最佳方法是什么? XMLHttpRequest 能否在 iPhone Phonegap 应用程序中本地工作?哪种方法最快?
最理想的是,我希望该方法有一个事件或一种方法来确定代码何时完全完成加载。
I've got a bit of HTML code that I'd like inject into a main HTML-document only when needed. (Holding off this code at first will hopefully make the app load up faster) Since, it's phonegap-wrapped I guess the files run locally on the device and the solution must cope with that.
What's the best way of doing this? Will an XMLHttpRequest work locally in an iPhone Phonegap app? Which method is the fastest?
Optimally, I would like the method to have an event or a way to determine when the code has completely finished loading..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请记住将您的 url 添加到 Phonegap.plist 以使用跨域,在“ExternalHosts”字段上只需添加一个值为“http://your_api_site”或直接“*”的项目。
Remember to add your url to the Phonegap.plist to use cross-domain, on the field ExternalHosts just add an item with value "http://your_api_site" or directly "*".