KOA

6.3KOA 数据响应 Response

2020-01-06  本文已影响0人  帶頭二哥

数据响应 Response

获取 Response 对象
router.post('/',async (ctx,next) => {
    // 获取数据响应对象
    let response = ctx.response
    // 设置响应内容
    response.body = "Hello World" 
    // 等价于 ctx.body = "Hello World"
    // ...

    // 响应头
    response.headers 

    // 响应状态
    response.status // 别名 ctx.status
    // 重定向
    response.redirect(url, [alt]) // 别名 ctx.redirect
    // 获取响应 Content-Type 不含参数 "charset"。
    response.type // 别名 ctx.type
})

API详细地址

Response 别名
响应状态码说明
上一篇下一篇

猜你喜欢

热点阅读