美文网首页
Node笔记 - Express

Node笔记 - Express

作者: _Wake | 来源:发表于2016-11-17 00:21 被阅读24次

    二、 连接MySql
    安装mysql模块 npm install mysql

    三、Express框架
    1.增加页面
    // 创建 info.js与 info.ejs 文件

          //info.js
          var express = require('express');
          module.exports = function (req, res, next) {
              response.render('info',{title : '传参数'})   // info 对应 info.ejs
          };
          //app.js
          var info = require('./routes/info');   // 添加路由
          
          app.use('/info',info);  // 使用中间件
    

    相关文章

      网友评论

          本文标题:Node笔记 - Express

          本文链接:https://www.haomeiwen.com/subject/bxqdpttx.html