Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.6k views
in Technique[技术] by (71.8m points)

express访问静态资源失败

有没有谁遇到过express框架找访问不到静态资源的情况

const path=require("path");
app.use(express.static(path.join(__dirname, "public")));

访问public目录下的图片:
http://localhost:3000/images/bg.png

报错
bg.png:1 GET http://localhost:3000/images/bg.png 500 (Internal Server Error)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

我终于找到了原因,是因为我用了express-session,当我注释掉这个中间件的引用后,就可以正常访问了


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...