nestjs Response装饰器 使用
时间:2020-01-02 18:55:35
收藏:0
阅读:249
在使用Response装饰器时,必须通过调用响应对象(例如,res.json(…)
或 res.send(…)
)发出某种响应,否则HTTP服务器将挂起。
示例:
// 设置cookie
@Get(‘set-cookie‘)
setCookie(@Response() res) {
res.cookie("name", ‘mfg‘);
// res.send({
// status: 1
// })
//or
res.json({
status: 1
})
}
原文:https://www.cnblogs.com/mengfangui/p/12133975.html
评论(0)