express基础三:路由

介绍

路由是指应用程序的端点(URI)如何响应客户端请求。有关路由的介绍,请参见基本路由。您可以使用Express应用程序对象的与HTTP方法相对应的方法来定义路由。例如,app.get()处理GET请求,而app.post处理POST请求。有关完整列表,请参阅app.METHOD。您还可以使用app.all()处理所有HTTP方法,并使用app.use()将中间件指定为回调函数(有关详细信息,请参见使用中间件)。这些路由方法指定当应用程序收到对指定路由(端点)和HTTP方法的请求时调用的回调函数(有时称为“处理函数”)。换句话说,应用程序“侦听”与指定的路由和方法匹配的请求,并且当它检测到匹配项时,它将调用指定的回调函数。实际上,路由方法可以具有多个回调函数作为参数。对于多个回调函数,重要的是提供next作为回调函数的参数,然后在函数体内调用next()将控制权移交给下一个回调。

var express = require('express')
var app = express()

// respond with "hello world" when a GET request is made to the homepage
app.get('/', function (req, res) {
  res.send('hello world')
})

路由方法

路由方法是从HTTP方法之一派生的,并附加到express类的实例。以下代码是为GET和POST方法定义的到应用根目录的路由的示例。

// GET method route
app.get('/', function (req, res) {
  res.send('GET request to the homepage')
})

// POST method route
app.post('/', function (req, res) {
  res.send('POST request to the homepage')
})

有一个特殊的路由方法app.all(),用于在路径上为所有HTTP请求方法加载中间件功能。例如,无论使用GET,POST,PUT,DELETE还是http模块支持的任何其他HTTP请求方法,都会对路由“ / secret”的请求执行以下处理程序。

app.all('/secret', function (req, res, next) {
  console.log('Accessing the secret section ...')
  next() // pass control to the next handler
})

路由路径

路由路径结合请求方法,定义了可以发出请求的端点。路由路径可以是字符串,字符串模式或正则表达式。

字符?,+,*和()是其正则表达式对应项的子集。连字符(-)和点(。)由基于字符串的路径逐字解释。

如果您需要在路径字符串中使用美元字符( book”处请求的路径字符串应为“ / data /([\ $])book”。

以下是一些基于字符串的路由路径示例。

此路由路径会将请求与根路由/匹配。

app.get('/', function (req, res) {
  res.send('root')
})

此路由路径会将请求匹配到/ about。

app.get('/about', function (req, res) {
  res.send('about')
})

该路由路径会将请求匹配到/random.text。

app.get('/random.text', function (req, res) {
  res.send('random.text')
})

以下是一些基于字符串模式的路由路径示例。

此路由路径将匹配acd和abcd。

app.get('/ab?cd', function (req, res) {
  res.send('ab?cd')
})

此路由路径将匹配abcd,abbcd,abbbcd等。

app.get('/ab+cd', function (req, res) {
  res.send('ab+cd')
})

此路由路径将匹配abcd,abxcd,abRANDOMcd,ab123cd等。

app.get('/ab*cd', function (req, res) {
  res.send('ab*cd')
})

基于正则表达式的路由路径示例:

此路由路径将匹配其中带有“ a”的任何内容。

app.get(/a/, function (req, res) {
  res.send('/a/')
})

此路线将匹配butterfly 和dragonfly,但不匹配butterflyman,dragonflyman等。

app.get(/.*fly$/, function (req, res) {
  res.send('/.*fly$/')
})

路由参数

路由参数被命名为URL段,用于捕获URL中在其位置处指定的值。捕获的值将填充到req.params对象中,并将在路径中指定的route参数的名称作为其各自的键。

Route path: /users/:userId/books/:bookId
Request URL: http://localhost:3000/users/34/books/8989
req.params: { "userId": "34", "bookId": "8989" }

要使用路由参数定义路由,只需在路由路径中指定路由参数,如下所示。

app.get('/users/:userId/books/:bookId', function (req, res) {
  res.send(req.params)
})

路径参数的名称必须由“文字字符”([A-Za-z0-9_])组成。

由于连字符(-)和点(。)是按字面解释的,因此可以将它们与路由参数一起使用,以达到有用的目的。

Route path: /flights/:from-:to
Request URL: http://localhost:3000/flights/LAX-SFO
req.params: { "from": "LAX", "to": "SFO" }
Route path: /plantae/:genus.:species
Request URL: http://localhost:3000/plantae/Prunus.persica
req.params: { "genus": "Prunus", "species": "persica" }

为了更好地控制可以由route参数匹配的确切字符串,可以在括号(())后面附加一个正则表达式:

Route path: /user/:userId(\d+)
Request URL: http://localhost:3000/user/42
req.params: {"userId": "42"}

因为正则表达式通常是文字字符串的一部分,所以请确保使用任何反斜杠转义任何\字符,例如\ d +。

在Express 4.x中,不以常规方式解释正则表达式中的字符。解决方法是使用{0,}代替。这可能会在Express 5中修复。

路由处理

您可以提供行为类似于中间件的多个回调函数来处理请求。唯一的例外是这些回调可能会调用next('route')绕过其余的路由回调。您可以使用此机制在路由上施加先决条件,然后在没有理由继续使用当前路由的情况下将控制权传递给后续路由。

路由处理程序可以采用函数,函数数组或二者组合的形式,如以下示例所示。

单个回调函数可以处理路由。例如:

app.get('/example/a', function (req, res) {
  res.send('Hello from A!')
})

多个回调函数可以处理一条路由(请确保您指定了下一个对象)。例如:

app.get('/example/b', function (req, res, next) {
  console.log('the response will be sent by the next function ...')
  next()
}, function (req, res) {
  res.send('Hello from B!')
})

回调函数数组可以处理路由。例如:

var cb0 = function (req, res, next) {
  console.log('CB0')
  next()
}

var cb1 = function (req, res, next) {
  console.log('CB1')
  next()
}

var cb2 = function (req, res) {
  res.send('Hello from C!')
}

app.get('/example/c', [cb0, cb1, cb2])

独立功能和功能数组的组合可以处理路由。例如:

var cb0 = function (req, res, next) {
  console.log('CB0')
  next()
}

var cb1 = function (req, res, next) {
  console.log('CB1')
  next()
}

app.get('/example/d', [cb0, cb1], function (req, res, next) {
  console.log('the response will be sent by the next function ...')
  next()
}, function (req, res) {
  res.send('Hello from D!')
})

Response 方法

下表中响应对象(res)上的方法可以向客户端发送响应,并终止请求-响应周期。如果从路由处理程序中未调用这些方法,则客户端请求将被挂起。

方法 描述
res.download() 提示要下载的文件
res.end() 结束响应过程。
res.json() 发送JSON响应。
res.jsonp() 发送带有JSONP支持的JSON响应。
res.redirect() 重定向请求。
res.render() 渲染视图模板。
res.send() 发送各种类型的响应。
res.sendFile() 将文件作为八位字节流发送。
res.sendStatus() 设置响应状态代码,并将其字符串表示形式发送为响应正文。

app.route()

您可以使用app.route()为路由路径创建可链接的路由处理程序。由于路径是在单个位置指定的,因此创建模块化路由非常有帮助,减少冗余和错别字也很有帮助。有关路由的更多信息,请参见:Router()文档。

这是使用app.route()定义的链式路由处理程序的示例。

app.route('/book')
  .get(function (req, res) {
    res.send('Get a random book')
  })
  .post(function (req, res) {
    res.send('Add a book')
  })
  .put(function (req, res) {
    res.send('Update the book')
  })

express.Router

使用express.Router类创建模块化的可安装路由处理程序。路由器实例是一个完整的中间件和路由系统。因此,它通常被称为“mini-app”。

以下示例将路由器创建为模块,在其中加载中间件功能,定义一些路由,并将路由器模块安装在主应用程序的路径上。

在app目录中创建一个名为birds.js的路由器文件,其内容如下:

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

// middleware that is specific to this router
router.use(function timeLog (req, res, next) {
  console.log('Time: ', Date.now())
  next()
})
// define the home page route
router.get('/', function (req, res) {
  res.send('Birds home page')
})
// define the about route
router.get('/about', function (req, res) {
  res.send('About birds')
})

module.exports = router

然后,在应用程序中加载路由器模块:

var birds = require('./birds')

// ...

app.use('/birds', birds)

该应用程序现在将能够处理对/ birds和/ birds / about的请求,以及调用特定于该路线的timeLog中间件函数。

你可能感兴趣的:(express基础三:路由)