2013-03-15 73 views
0

我開始使用離線webapps。Html5緩存清單無法正常工作

我做了一個測試網站的緩存清單,但我不能讓它工作。

我試過,當離線時,它從index.html重定向到offline.html,但它只是下載index.html並顯示它。

這是我的緩存清單:

CACHE MANIFEST 

FALLBACK: 
./ ./offline.html 

裏面的index.html只有一個行:

Hello this is a test, you are online 

這是offline.html

<html manifest='cmanifest'> 
<head></head> 
<body>you are offline now</body> 
</html> 

UPDATE

現在我有這個問題:

我添加了一個鏈接,該鏈接應該在聯機時進入一個站點,在脫機時應該另一個站點,但它只是一直加載online.html。

我的index.html是現在這個樣子:

<html> 
<a href='online.html'>Ir a online.html</a> 
</html> 

而且我的緩存是這樣的:

CACHE MANIFEST 

#v2 

FALLBACK: 
./online ./offline.html 

NETWORK: 
* 

回答

0

好吧,我找到了自己的解決方案。

我此行缺少:

NETWORK: 
*