我正在构建一个node.js应用程序。我希望在管理员成功上传数据后,呈现主页,即从localhost:3000/adminlocalhost:3000。我试过下面的代码:

router.post('/', (req, res)=>{upload(req, res, function(err) {
  if (err) {
    console.log(err);
    res.render('admin', {msg: err});
  }else{
    return res.redirect('index');
  }
}


这是index.js代码:

var express = require('express');
var router = express.Router();

/* GET home page. */
router.get('/', function(req, res, next) {
  res.render('index', { title: 'Express' });
});

module.exports = router;


但是尽管标题已定义为index.js且表达路由很好,但仍收到错误:


ReferenceError: E:\Documents\Computer and Coding\PlayGround\PROJECTS\Catalogue\views\index.ejs:4
    2| <html>
    3|   <head>
 >> 4|     <title><%= title %></title>
    5|     <link rel='stylesheet' href='/stylesheets/style.css' />
    6|   </head>
    7|   <body>

title is not defined

最佳答案

如果要从服务器发送变量title,请更改以下行:

res.render('admin', {msg: err});


至:

res.render('admin', {msg: err, title: <your title here>});

关于javascript - 从localhost:3000/admin到localhost:3000,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51315540/

10-12 13:51