Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

有没有谁遇到过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)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...