码迷,mamicode.com
首页 > 其他好文 > 详细

中间件

时间:2019-02-26 01:31:18      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:cti   message   send   list   stat   serve   port   var   foo   

var express = require(‘express‘)
var fs = require(‘fs‘)

var app = express()

// app.get(‘/abc‘, function (req, res, next) {
// console.log(‘abc‘)
// // req.foo = ‘bar‘
// req.body = {}
// next()
// })

// app.get(‘/abc‘, function (req, res, next) {
// console.log(req.body)
// console.log(‘abc 2‘)
// })

app.get(‘/‘, function (req, res, next) {
fs.readFile(‘.d/sa./d.sa/.dsa‘, function (err, data) {
if (err) {
// return res.status(500).send(‘Server Error‘)
// 当调用 next 的时候,如果传递了参数,则直接往后找到带有 四个参数的应用程序级别中间件
// 当发生错误的时候,我们可以调用 next 传递错误对象
// 然后就会被全局错误处理中间件匹配到并处理之
next(err)
}
})
})

app.get(‘/‘, function (req, res, next) {
console.log(‘/ 2‘)
})



app.get(‘/a‘, function (req, res, next) {
fs.readFile(‘./abc‘, function (err, data) {
if (err) {
// return res.status(500).send(‘Server Error‘)
next(err)
}
})
})

app.use(function (req, res, next) {
res.send(‘404‘)
})

// 配置错误处理中间件
app.use(function (err, req, res, next) {
res.status(500).send(err.message)
})

app.listen(3000, function () {
console.log(‘app is running at port 3000.‘)
})



中间件

标签:cti   message   send   list   stat   serve   port   var   foo   

原文地址:https://www.cnblogs.com/lujieting/p/10434727.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!