我一直在尝试在我的Express.js应用程序的公共文件夹中创建一个简单的html文件,但无法获得正确的路径。有人可以帮帮我吗?
以下是我配置静态文件夹的app.js的一部分:
app.use(express.static(path.join(__dirname, 'public')));
这是我用来尝试在公共文件夹中创建index.html文件的代码:
exports.index = function(req, res){
var fs = require('fs');
fs.openSync(__dirname + "/public/static_html/index.html", 'w')
};
但是,node.js会抛出错误:
500错误:ENOENT,没有这样的文件或目录 'C:\的NodeJS \ node_modules.bin \ MYAPP \路由\公共\ static_html \的index.html'
为什么它指向“routes”中的公共文件夹?
我想要的道路是:
'C:\的NodeJS \ node_modules.bin \ MYAPP \公共\ static_html \的index.html'
有人可以帮忙吗?
答案 0 :(得分:6)
我的猜测是您的目录结构如下所示:
app.js
public/
static_html/
routes/
index.js
你的exports.index
存在于routes/index.js
中(也许它的名字不同,但我只是在这里猜测。)
由于__dirname
与模块相关,因此该文件中的./routes
为public/
。因此,您需要返回一个级别才能访问fs.openSync(__dirname + "/../public/static_html/index.html", 'w')
:
{{1}}