app.use(express.static(path.join(__dirname, '/public')));
我无法使用Express.js获取我的CSS文件,但它可以使用链接。
html
head
title Welcome
link(rel='stylesheet' src='/css/bootstrap.css')
link(rel='stylesheet' src='/css/bootstrap-theme.css')
script(type='text/javascript' src='/javascripts/jquery.js')
script(type='text/javascript' src='/javascripts/bootstrap.js')
body
div(class='container')
input(type='submit' class='btn btn-success')
h1 Users
- each name in names
p= 'Username: ' + name.name
答案 0 :(得分:1)
尝试使用以下语法来包含css:
link(rel='stylesheet', href='/css/bootstrap.css')
正如html样式标记采用href属性一样,jade中的链接也是如此。