3
我想創建與nodeJS和angular2作爲客戶端框架的應用程序。我已經創建了節點項目並在公共文件夾中使用angular-cli創建了整個角度項目。我有航線的NodeJSNodeJS和角度2項目
// api routes
app.get('/api/getSomeData', function(req, res){
res.json({'data': 'Dummy Data'});
});
// Redirect all other routes to angular index file
app.get('*', function(req, res){
res.sendFile(__dirname + '/public/src/index.html');
});
我不能成爲angulars index.html頁面。我不知道我是否必須構建角度以及如何構建。
凡有JS文件?你是否也將它們重定向到'index.html'? –
所有的角度文件都在nodeJS的公共文件夾中 – Nemanja