Angular 2 + / NodeJS / Express:页面刷新时路由失败

时间:2018-07-25 00:41:39

标签: node.js angular express heroku routing

所以我认为这首先是Heroku问题,但是使用NodeJS在本地运行时也会发生同样的事情。

我的Angular应用程序的首页显示正常,并且在使用链接进行导航时,路由可以正常工作。

但是,如果我尝试刷新路由上的页面(比如说/ login),那么服务器将仅显示以下文本: /app/dist/meal-planner/index.html在Heroku上,以及 /Users/name-here/Development/workspace/meal-planner/dist/meal-planner/index.html在本地

这是我的 server.js:

//Install express server
const express = require('express');
const http = require('http');
const path = require('path');

const app = express();

// Serve only the static files form the dist directory
app.use(express.static(path.join(__dirname, '/dist/meal-planner')));

// For all GET requests, send back index.html (PathLocationStrategy)
app.get('*', (req,res) => {
    res.send(path.join(__dirname, '/dist/meal-planner/index.html'));
});

// Start the app by listening on the default Heroku port
const port = process.env.PORT || 8080;
app.set('port', port);
const server = http.createServer(app);
server.listen(port, () => console.log('Running on port ' + port));

还有我的folder structure以防万一...

1 个答案:

答案 0 :(得分:1)

res.send(path.join(__dirname, '/dist/meal-planner/index.html'));

path.join返回一个字符串,您正在将该字符串作为响应发送。这解释了为什么服务器以文本响应。

您可能希望使用sendFile而不是send

res.sendFile(path.join(__dirname, '/dist/meal-planner/index.html'));