egg_server/test/batchUser.ts
zhaoyingbo 6e65581bbf
All checks were successful
Egg CI/CD / build-image (push) Successful in 32s
Egg CI/CD / deploy (push) Successful in 37s
feat: 接入lint 和 husky
2024-07-25 01:48:22 +00:00

16 lines
380 B
TypeScript

const localUrl = "http://localhost:3000/micro_app/batch_user"
// const prodUrl = "https://egg.imoaix.cn/micro_app/batch_user";
const res = await fetch(localUrl, {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
user_ids: ["zhaoyingbo"],
user_id_type: "user_id",
}),
})
console.log(JSON.stringify(await res.json()))