我有示例网站:
/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,如果我能做错的话?