1

我正在尝试使网络应用程序在离线时可见。

  • index.html像这样引用清单:<!DOCTYPE html manifest="manifest.appcache">
  • MIME 类型正确:my .htaccesshasAddType text/cache-manifest .appcache

manifest.appcache看起来像:

CACHE MANIFEST
# 2012-09-28:v1

CACHE:
style.css
images/logo.png

但是,没有缓存任何内容。

当我applicationCache.status在 javascript 控制台中调用时,它会返回(我认为如果成功0应该返回)。在 Chrome 中,查看还显示没有应用程序缓存。1
chrome://appcache-internals/

我究竟做错了什么?

4

1 回答 1

1

好吧,那太愚蠢了。这是我做错的事情:

<!DOCTYPE html manifest="manifest.appcache">

应该是:

<!DOCTYPE html>
<html manifest="manifest.appcache">
于 2012-09-28T12:13:33.147 回答