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