gpt4 book ai didi

javascript - Node.js __dirname 未定义

转载 作者:IT老高 更新时间:2023-10-28 23:17:53 27 4
gpt4 key购买 nike

我的目录如下所示:

/config.json , /server.js , /staticFiles/welcome.html

运行 server.js 报错:

app.use(express.static(_dirname + "/staticFiles")); ^ ReferenceError: _dirname is not defined

我的 Server.js:

//------------Server-------------

var fs = require("fs");
var config = JSON.parse(fs.readFileSync("./config.json"));

console.log("Server UP and running..");

var host = config.host;
var port = config.port;
var express = require("express");

var app = express.createServer();



//---------Application----------------

app.use(app.router);
app.use(express.static(_dirname + "/staticFiles"));

app.get("/", function(request,response){

response.send("<h1>"/" of TrimServer</h1>");

});

app.listen(port,host);
console.log("Listening on Port -->",port);


//--------------End-------------------

最佳答案

您使用的是一个下划线,而此变量实际上在开头有两个下划线: http://nodejs.org/docs/latest/api/globals.html#globals_dirname

所以用

app.use(express.static(__dirname + "/staticFiles"));

而不是

app.use(express.static(_dirname + "/staticFiles"));

关于javascript - Node.js __dirname 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18556613/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com