我刚开始在节点中创建一个小项目并使用jade作为视图引擎表达,但由于某些原因我不知道......
我的观点:
doctype html
html
head
meta(charset='utf-8')
title= 'Admin / ' + title
link(ref='stylesheet', href='https://storage.googleapis.com/code.getmdl.io/1.0.5/material.indigo-pink.min.css')
link(ref='stylesheet', href='/public/css/style.css')
body
block content
script(src='/public/material-design-lite/material.min.js')
我使用了官方来源的mdl样式表,以确保我的静态文件夹路径不会出现问题。
我的控制器:
export default class Dashboard {
constructor(req, res) {
res.render('admin/dashboard', {
title: 'Dashboard'
});
}
}
核心:
import express from 'express';
import {Routes} from './config/config';
export default class Core {
constructor() {
this.app = express();
this.app.set('view engine', 'jade');
this.app.set('views', __dirname + '/views');
let routes = new Routes();
this.app.use('/', routes.get());
this.app.use('/public', express.static('public'));
this.app.use('/public/material-design-lite', express.static('node_modules/material-design-lite'));
this.app.listen('3000', () => {
console.log('Listening on ::3000');
});
}
}
我没有看到任何错误,但不知何故样式表没有加载,但是脚本加载正常,如果我尝试直接加载样式表,它们加载也很好。
请,如果有人能帮助我,我会非常感激!
提前致谢。
答案 0 :(得分:2)
应该是rel
而不是ref
link(rel='stylesheet', href='/public/css/style.css')
^^^