chore(net-tool): 返回200成功时,无data不展示
All checks were successful
/ release (push) Successful in 29s

This commit is contained in:
zhaoyingbo 2024-09-24 10:27:17 +00:00
parent 94005549bf
commit b52682b96d

View File

@ -468,7 +468,9 @@ class NetTool extends NetToolBase {
* @returns 200 OK的响应对象
*/
ok(data?: any) {
this.logger.info(`return a ok response: ${JSON.stringify(data)}`)
this.logger.info(
`return a ok response${data ? ": " + JSON.stringify(data) : ""}`
)
return Response.json({
code: 0,
message: "success",