我想從一個角度2項目的index.html作爲Spring MVC應用程序的歡迎頁面運行。
我運行角度2的方式是通過npm start
。如果我在不執行npm start
的情況下加載index.html,則組件加載不正確。
我如何能夠將index.html作爲我的Spring MVC項目的歡迎頁面?如何在Spring MVC應用程序中運行Angular 2頁面?
編輯:添加了一些更多的細節。
angular-seed項目按原樣加載。我只是試圖從angular-seed項目加載index.html。節點模塊已經被添加,並且與npm start
完美配合。
至於我的web.xml,我歡迎文件是這樣的:
<welcome-file-list>
<welcome-file>AngularContent/src/index.html</welcome-file>
</welcome-file-list>
和index.html有以下幾點:
<!DOCTYPE html>
<html>
<head>
<title>Angular QuickStart</title>
<base href="/">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<base href="/">
<link rel="stylesheet" href="styles.css">
<!-- Polyfill(s) for older browsers -->
<script src="AngularContent/node_modules/core-js/client/shim.min.js"></script>
<script src="AngularContent/node_modules/zone.js/dist/zone.js"></script>
<script src="AngularContent/node_modules/systemjs/dist/system.src.js"></script>
<script src="AngularContent/src/systemjs.config.js"></script>
<script>
System.import('AngularContent/src/main.js').catch(function(err){ console.error(err); });
</script>
</head>
<body>
<my-app>Loading AppComponent content here ...</my-app>
</body>
</html>
你需要正確配置你的src,發佈一些代碼是有幫助的 – Jaiwo99
@ Jaiwo99添加代碼。讓我知道你是否需要更多 – paaaaat