gpt4 book ai didi

android - 应用程序缓存在 android 设备上不起作用(在 chrome 浏览器上运行良好)

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:18:00 24 4
gpt4 key购买 nike

我正在尝试使用应用缓存来验证性能。

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

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

问题是……

它在 Google chrome 浏览器上运行良好,但在我的 android 手机上无法运行。

我在 ICS 和 Gingerbread 测试过。

这是 list 文件。

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 应用程序上。但我无法处理它。

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

最佳答案

yugidroid 链接的答案间接地让我找到了正确的路线。答案中链接的博客显示了该怎么做:

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

我再次删除了这些行以进行测试:同样的错误 - 重新添加:没有错误!

关于android - 应用程序缓存在 android 设备上不起作用(在 chrome 浏览器上运行良好),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11445008/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com