gpt4 book ai didi

node.js - 快速静态文件夹中的样式表

转载 作者:太空宇宙 更新时间:2023-11-04 03:31:30 24 4
gpt4 key购买 nike

我已经像这样设置了静态文件夹:

app.use(express.static(path.join(__dirname, '/public')));

并引用样式表(可以在“public/stylesheets”中找到),如下所示:

<link rel="stylesheet" href="stylesheets/style.css">

它在 localhost:3500/和 localhost:3500/items 上工作正常,但是当我进入 localhost:3500/items/get 时,它会在“items/stylesheets”中搜索样式表。我应该做什么,让“公共(public)”图书馆无论我在哪里都保持不变?

最佳答案

您缺少正斜杠,因此它始终相对于您网站的根目录进行搜索

<link rel="stylesheet" href="/stylesheets/style.css">

关于node.js - 快速静态文件夹中的样式表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36958019/

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