node引入express的路由router

// app.js 首页

const express = require('express');

const app = express();

const bodyParser = require('body-parser');

const mysql = require('mysql');

const router = require('./router/index') // 引入路由

// 开启数据库

const connection = mysql.createConnection({

host: 'localhost',

user: 'root',

password: '',

database: 'test',

multipleStatements: true, // 允许执行多条语句

})

connection.connect(() =>{

console.log('链接成功')

});

app.use(bodyParser.urlencoded({

extends: true

}));

//设置跨域访问

app.all('*', (req, res, next) => {

res.header("Access-Control-Allow-Origin", "*");

res.header("Access-Control-Allow-Headers", "X-Requested-With");

res.header("Access-Control-Allow-Methods", "PUT,POST,GET,DELETE,OPTIONS");

res.header("X-Powered-By", ' 3.2.1');

res.header("Content-Type", "application/json;charset=utf-8");

next();

});

// 使用路由 /index 是路由指向名称

app.use(`/index`,router)

//配置服务端口

var server = app.listen(3000, () => {

const hostname = 'localhost';

const port = 3000;

console.log(`Server running at http://${hostname}:${port}/`);

})

新建一个路由的文件夹router,并且在router下新建一个index.js的文件

const express = require(`express`)

const router = express.Router()

router.use((req, res, next) => {

console.log(`路由执行成功啦~~~`, Date.now());

next()

})

router.get(`/`, (req, res, next) => {

res.json({

status: 200,

data: `请求成功`

})

})

router.get(`/data`, (req, res, next) => {

res.json({

status: 200,

data: [1, 2, 3, 4, 5, 6, 7]

})

})

module.exports = router

下面可用通过请求测试路由
http://localhost:3000/index/data
或者
http://localhost:3000/index

/index/data 和 /index 两种方法都可以访问

大功告成啦~~~
接下来可用根据自己项目需求分出多个模块,建立不同名称的文件来管理不同的路由请求。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

晴天暖宝宝

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值