nestjs Response装饰器 使用
2021-05-02 02:28
标签:font family size 16px end http服务 mic nes color 在使用Response装饰器时,必须通过调用响应对象(例如, 示例: nestjs Response装饰器 使用 标签:font family size 16px end http服务 mic nes color 原文地址:https://www.cnblogs.com/mengfangui/p/12133975.htmlres.json(…)
或 res.send(…)
)发出某种响应,否则HTTP服务器将挂起。// 设置cookie
@Get(‘set-cookie‘)
setCookie(@Response() res) {
res.cookie("name", ‘mfg‘);
// res.send({
// status: 1
// })
//or
res.json({
status: 1
})
}
下一篇:简单的网页布局
文章标题:nestjs Response装饰器 使用
文章链接:http://soscw.com/index.php/essay/81136.html