0

我的设置/代码如下(顺便说一句,我正在关注nettuts 快速提示

// index.html
<!DOCTYPE HTML>
<html lang="en-US" manifest="cache.manifest">

// cache.manifest
CACHE MANIFEST
# version 2
index.html
style.css
scripts.css

// httpd.conf (i tried having a local .htaccess too)
AddType text/cache-manifest .manifest
AddType text/cache-manifest manifest // i have this as its whats shown in the video. anyway even if i remove this it still fails. 

更新

从 Live HTTP Headers @ pastebin记录

http://localhost/cache.manifest

GET /cache.manifest HTTP/1.1
Host: localhost
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 ( .NET CLR 3.5.30729; .NET4.0E) FirePHP/0.4
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://localhost/
X-Moz: offline-resource
Pragma: no-cache
Cache-Control: no-cache

HTTP/1.1 200 OK
Date: Sat, 04 Sep 2010 03:14:16 GMT
Server: Apache/2.2.16 (Win32) PHP/5.3.3
Last-Modified: Sat, 04 Sep 2010 03:14:09 GMT
Etag: "700000000238e-42-48f6670db41b9"
Accept-Ranges: bytes
Content-Length: 66
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
Content-Type: text/cache-manifest

我看到最后一行了吗?Content-Type: text/cache-manifest或第 6 个Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8

我认为它现在可以工作,但是如果我有来自 google cdn 的 jquery,它不会在第二次刷新时工作,我认为它只尝试使用本地文件?

4

1 回答 1

0

我认为它现在可以工作,但是如果我有来自 google cdn 的 jquery,它不会在第二次刷新时工作,我认为它只尝试使用本地文件?

每个外部资源(无论是在您的域中还是在其他域中)都必须在清单中进行说明。如果要使用 google 的 jQuery cdn,您必须在清单文件中引用它。像这样的东西:

https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js

在我的清单末尾,我通常包括以下行来说明我没有列出但可能会使用的任何资源。只有在有网络连接时才使用它们:

NETWORK:
*
于 2011-05-23T21:54:27.920 回答