2016-06-20 71 views
0

我想從本地PC上的WAMP運行Angular2應用程序。
我開發的應用從WAMP/WWW文件夾,並在不同階段測試它無論從localhost:3000localhost/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:

lite server

WAMP,的Index.html wamp

+0

試試這個:document.write(''); –

+0

你可以發佈你的目錄結構嗎? – kemsky

+0

您是否可以檢查您的瀏覽器控制檯是否已加載幷包含System.js? –

回答

0

我只是閱讀有關新的angular2 router,我想試試這個:

<base href=".">

它只是沒有更多的錯誤工作!

我不知道爲什麼,但是現在wamp和liteserver都能正常工作,即使在所有關於路由器的教程中,他們都顯示了這種方法:<base href="/">。我希望這會幫助別人把更少的時間浪費在這個愚蠢的事情上,然後我做到了。

相關問題