在ejs文件中使用'/'的CSS链接href路径

时间:2016-08-12 01:59:16

标签: css node.js http express ejs

pic 1:为公共文件夹设置express.static

图2:在post.ejs中设置href =“/ app.css”

图3:结果

我尝试在post.ejs中使用 /app.css app.css

结果与第三张图片相同

这意味着在我设置

之后

app.use(express.static( “公共”));

在app.js中

然后静态文件的根路径是 / public

因此

绝对路径 /app.css和

相对路径 app.css

是一样的吗?

感谢

enter image description here

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

作为您的设置,public是根文件夹。 您可以通过2种方式调用app.css,“app.css”和“/app.css”。他们都在当前根文件夹中获取文件app.css - >我认为它们是一样的。