6

我正在尝试使用应用缓存来批准性能。

我在各个站点得到了指导。(例如http://xguru.net/621 ...)

制作 cache.man 文件,将 mime-type 设置为 text/cache-manifest。

问题是...

它在谷歌 chrome 浏览器上运行良好,但在我的 android 手机上不起作用。

我在 ICS 和 Gingerbread 进行了测试。

这是清单文件。

CACHE MANIFEST
# manifest version v0.1 

CACHE:
./programs.png
./video.png

NETWORK:
* 

然后,我像这样设置我的 webview。

getSettings().setAppCacheEnabled(true);
getSettings().setDomStorageEnabled(true);
getSettings().setPluginsEnabled(true);
getSettings().setCacheMode(WebSettings.LOAD_DEFAULT);

(我将cacheMode更改为LOAD_NORMAL、NO_CACHE,但并没有什么不同。)

要查看缓存状态,我使用此站点。 http://jonathanstark.com/blog/2009/09/27/debugging-html-5-offline-application-cache/

var cacheStatusValues = [];
cacheStatusValues[0] = 'uncached';
cacheStatusValues[1] = 'idle';
cacheStatusValues[2] = 'checking';
cacheStatusValues[3] = 'downloading';
cacheStatusValues[4] = 'updateready';
cacheStatusValues[5] = 'obsolete';

var cache = window.applicationCache;
cache.addEventListener('cached', logEvent, false);
cache.addEventListener('checking', logEvent, false);
cache.addEventListener('downloading', logEvent, false);
cache.addEventListener('error', logEvent, false);
cache.addEventListener('noupdate', logEvent, false);
cache.addEventListener('obsolete', logEvent, false);
cache.addEventListener('progress', logEvent, false);
cache.addEventListener('updateready', logEvent, false);

function logEvent(e) {
    var online, status, type, message;
    online = (navigator.onLine) ? 'yes' : 'no';
    status = cacheStatusValues[cache.status];
    type = e.type;
    message = 'online: ' + online;
    message+= ', event: ' + type;
    message+= ', status: ' + status;
    if (type == 'error' && navigator.onLine) {
        message+= ' (prolly a syntax error in manifest)';
    }
    console.log(message);
}

window.applicationCache.addEventListener(
    'updateready',
    function(){
        window.applicationCache.swapCache();
        console.log('swap cache has been called');
    },
    false
);

最后,这是我在我的安卓手机上看到的日志。

[cache Resource] app cache support! 
[cache Resource] DOWNLOADING 
[cache Resource] event online: yes, event: checking, status: uncached 
[cache Resource] event online: yes, event: downloading, status: uncached 
[cache Resource] event online: yes, event: progress, status: uncached 
[cache Resource] event online: yes, event: progress, status: uncached 
[cache Resource] event online: yes, event: error, status: uncached (prolly a syntax error in manifest) 

图像已下载,但我们在最后一行得到错误。所以它总是处于未缓存状态。

我想问题出在 webview 设置或 android 应用程序上。但我无法处理它。

给我一个使用应用程序缓存的提示..请...

4

1 回答 1

2

由 yugidroid 间接链接的答案将我引向了正确的方向。答案中链接的博客显示了该怎么做:

    String appCachePath = getApplicationContext().getCacheDir().getAbsolutePath();
    webView.getSettings().setAppCachePath(appCachePath);

我再次删除了这些行进行测试:相同的错误 - 已阅读:没有错误!

于 2012-08-09T14:49:54.983 回答