3 回答
TA贡献1820条经验 获得超2个赞
尝试http://localhost:3001/default.css。
要/styles在您的请求URL中使用:
app.use("/styles", express.static(__dirname + '/styles'));
查看此页面上的示例:
//Serve static content for the app from the "public" directory in the application directory.
// GET /style.css etc
app.use(express.static(__dirname + '/public'));
// Mount the middleware at "/static" to serve static content only when their request path is prefixed with "/static".
// GET /static/style.css etc.
app.use('/static', express.static(__dirname + '/public'));
TA贡献1874条经验 获得超12个赞
default.css 应该在 http://localhost:3001/default.css
在styles中app.use(express.static(__dirname + '/styles'));只是告诉快递在寻找styles目录静态文件服务。它不会(令人困惑地)形成可用路径的一部分。
- 3 回答
- 0 关注
- 1301 浏览
添加回答
举报