我一直在关注a scotch.io教程来创建我的第一个节点和角度应用程序。我已经看到相对路径是Error: ENOENT: no such file or directory
的在线常见问题,据我所知,它与教程相同,所以我认为它不起作用。
完整的错误消息是:
Error: ENOENT: no such file or directory, stat'/Users/badman/githubRepos/travelGuide/app/public/index.html'
at Error (native)
My folder structure is here. 我的server.js:
// set up web server
var express = require('express');
var app = express();
var bodyParser = require("body-parser");
// routes
require('./app/routes.js')(app);
// listen (start app with node server.js)
app.listen(3000, function() {
console.log("server going");
})
routes.js:
module.exports = function (app) {
app.get('*', function (req, res) {
res.sendFile(__dirname + '/public/index.html'); // load the single view file (angular will handle the page changes on the front-end)
});
};
感谢任何帮助:)
答案 0 :(得分:4)
我有同样的问题,我搬了
app.get('*', function (req, res) {
res.sendFile(__dirname + '/public/index.html'); // load the single view file (angular will handle the page changes on the front-end)
});
到require('./app/routes.js')(app);
下面的 server.js 并修复了它!因为在调用服务器端路由时,它在错误的位置寻找 index.html 。我想你也可以改变路径,但我发现这更清楚了。