当前位置:  开发笔记 > 编程语言 > 正文

在Cordova应用程序中的Appcache

如何解决《在Cordova应用程序中的Appcache》经验,为你挑选了0个好方法。

我正在使用Cordova(3.4)开发移动应用程序.我的核心应用程序文件嵌入在我的应用程序存档(.apk或.ipa)中,并且必须从我的服务器检索一些文件(js/html/css).因此,如果我希望我的应用程序可以脱机使用,我需要使用appcache来处理这些文件.

我appcache.manifest的一个示例:

CACHE MANIFEST
# version 7


NETWORK:
*
http://*
https://*

CACHE:
# Message module
http://my.server.ip/module/routes.json
http://my.server.ip/module/css/style.css
http://my.server.ip/module/js/controller.js
http://my.server.ip/module/js/service.js
...

我的index.html(嵌入到我的应用中):



...






















    
乐韵答题
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有