通过使用express通过node js服务器执行。我想访问角 零件 。但无法访问index.jtml。它显示错误
localhost:3000` =
我想要执行app.componenet.html属性,但无法获取 这在server.js中可用
const api = require('./server/routes/api');
const port = 3000;
const app = express();
app.use(express.static(path.join(__dirname, 'dist')));
app.use(bodyParser.urlencoded({extended: true}));
app.use(bodyParser.json());
app.use('/api', api);
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, '/dist/index.html'));
});`
通过点击url:localhost:3000 我希望这应该能奏效!但实际结果
错误:ENOENT:没有这样的文件或目录,stat'D:\ backup \ learning \ MEAN \ ngApp \ dist \ index.html'