0
我想從本地PC上的WAMP運行Angular2應用程序。
我開發的應用從WAMP/WWW文件夾,並在不同階段測試它無論從localhost:3000
和localhost/myapp
(liteserver和WAMP)在本地WAMP服務器上出現Angular2錯誤
一切工作正常,直到我嘗試正下方的<head>
添加<base href="/">
變成index.html。
在這一點上,只有在WAMP我得到的錯誤:ReferenceError: System is not defined
有任何解決方法或修復闖過這個錯誤? (並轉移到下一個:))
這是我的Index.html。
<html>
<head>
<base href="/">
<title>Firebase</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<!-- 2. Configure SystemJS -->
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
</head>
<!-- 3. Display the application -->
<body>
<my-app>Loading...</my-app>
</body>
</html>
更新:
LiteServer工作,文件夾結構,並main.ts:
試試這個:document.write(' '); –
你可以發佈你的目錄結構嗎? – kemsky
您是否可以檢查您的瀏覽器控制檯是否已加載幷包含System.js? –