feat: 修复插入表格数据时的错误处理问题
All checks were successful
Egg CI/CD / build-image (push) Successful in 29s
Egg CI/CD / deploy (push) Successful in 20s

This commit is contained in:
zhaoyingbo 2024-07-12 11:19:59 +00:00
parent 3f71247287
commit 61919e0155
3 changed files with 6 additions and 4 deletions

View File

@ -48,9 +48,11 @@ export const manageSheetReq = async (req: Request) => {
body.range,
body.values
);
if (insertRes?.code !== 0) {
return netTool.serverError(insertRes?.msg, insertRes?.data);
}
// 返回
return netTool.ok(insertRes);
return netTool.ok(insertRes?.data);
}
return netTool.ok();

View File

@ -226,6 +226,6 @@ netTool.serverError = (msg: string, data?: any, requestId?: string) =>
* @returns 200 OK的响应对象
*/
netTool.ok = (data?: any, requestId?: string) =>
Response.json({ code: 200, msg: "ok", data, requestId });
Response.json({ code: 0, msg: "success", data, requestId });
export default netTool;

View File

@ -12,4 +12,4 @@ const res = await fetch(URL, {
}),
});
console.log(JSON.stringify(await res.text()));
console.log(JSON.stringify(await res.json(), null, 2));