给模板传递数据
router.get('/', function(req, res, next) { res.render('index', { title: '张三' //分配模板数据 }); });
模板接受数据
<body> <p>{{title}}</p> </body>