我在app.js里use了路由var headbarRouter = require('./routes/headbar');app.use('/headbar', headbarRouter);然后再routes/headbar.js里这么写router.get('/', function(req, res, next) { console.log("--------") res.render('headbar', { title: 'Express' });});我的理解是只要是headbar开头的请求都会拦截下来,然后render到headbar.ejs但是在index.ejs 我是这么写的<script src="/headbar.js"></script>这不也是一个请求吗?为什么没有拦截走到headbar.ejs里去,而是报错404
添加回答
举报
0/150
提交
取消