如何更改 PhoneGap 1.x 中的起始页
我正在尝试通过下载更新包并覆盖 PhoneGap 项目的 www 文件来更新 PhoneGap 项目的 Web 文件。问题在于 www 文件似乎存储在捆绑包中,而不是存储在文档目录中。我可以在启动时将这些文件复制到文档目录中,但我仍然不知道如何告诉PhoneGap使用文档目录中的index.html文件而不是原始的www目录。
I am trying to update the web files for a PhoneGap project by having it download an update package and overwrite the www files for the PhoneGap project. The problem is that the www files appear to be stored in the bundle and not in the documents directory. I can copy these files out to the documents directory on launch, but I am still unaware of how to tell PhoneGap to use the index.html file from the documents directory instead of the original www directory.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我能够通过覆盖
+(NSString*)wwwFolderName
和+ (NSString*) pathForResource:(NSString*)resourcepath
我相信通过覆盖+ (NSString*) pathForResource:(NSString*)resourcepath
我可能会遇到 PhoneGap 其他部分的一些问题。I was able to solve this by overriding
+(NSString*)wwwFolderName
and+ (NSString*) pathForResource:(NSString*)resourcepath
I believe that by overriding+ (NSString*) pathForResource:(NSString*)resourcepath
I may run into some problems with other parts of PhoneGap.