我现在真的很谦卑。我一直试图让我的应用程序在IE11浏览器中缓存而没有运气。
如果有人告诉我哪里出错了,我会非常感激的。我整天都在阅读,但无法找到导致问题的原因。
问题:
我的离线应用程序根据Chrome和Firefox中的清单文件正确缓存。但该应用程序并没有在IE11中缓存(这是我拥有的唯一IE)。我不知道出了什么问题。
我的代码:
manifest.appcache
CACHE MANIFEST
#V1.0
CACHE:
/FormsOffline/index.html
NETWORK:
*
的index.html
<!DOCTYPE html>
<html ng-app="app" lang="en" manifest="manifest.appcache">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Forms</title>
<link href="/FormsCommon/vendor/css/all.css" rel="stylesheet" />
<link href="/FormsCommon/assets/css/main.css" rel="stylesheet" />
</head>
<body>
</body>
</html>
当我运行index.html页面时,我在 IE11控制台中获得以下错误:
Creating AppCache with manifest: 'http://127.0.0.1:7101/FormsOffline/manifest.appcache'.
AppCache Fatal Error
使用 html5构建我的离线应用程序,angularjs和服务器是Oracle weblogic 。