我可以为不同的主机使用应用程序缓存回退吗?

时间:2012-04-01 17:14:35

标签: html5 offline fallback application-cache

我有示例网站:

/index.html
/appcache.manifest
/style.css
/test.js

的index.html:

<!DOCTYPE HTML>
<html manifest="appcache.manifest">
<head>
    <link type="text/css" rel="stylesheet" href="style.css" />
</head>
<body>
    <div id="map"></div>
    <script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
    <script>window.google && window.google.maps || console.info('Fail');</script>
</body>
</html>

appcache.manifest:

CACHE MANIFEST

NETWORK:
*

CACHE:
index.html
style.css
test.js

FALLBACK:
http://maps.googleapis.com/maps/api/js?sensor=false test.js

test.js:

window.google = window.google || {};
google.maps = google.maps || {};
console.info('I am work!!!')

当我第一次在没有互联网连接的localhost上打开网站时,我在控制台中看到了“Fial”。

我是否可以在应用程序缓存清单回退部分中使用http://different_domain,如果我能做错的话?

1 个答案:

答案 0 :(得分:2)

不,from the spec

  

后备名称空间和后备条目必须与原点相同   清单本身。