egg_server/test/archive/insertSheet.ts
zhaoyingbo 9545670a51
All checks were successful
Egg Server CI/CD / build-image (push) Successful in 45s
Egg Server CI/CD / refresh-image (push) Successful in 12s
Egg Server CI/CD / fast-deploy (push) Successful in 2s
feat: 支持清洗历史数据
2024-10-15 01:20:21 +00:00

16 lines
383 B
TypeScript

// const URL = "https://egg.imoaix.cn/sheet";
const URL = "http://localhost:3000/sheet"
const res = await fetch(URL, {
method: "POST",
body: JSON.stringify({
api_key: "uwnpzb9hvoft28h",
sheet_token: "shtk48HuiHQOUSTAZ0t0DFplNJc",
type: "insert",
range: "a2YJxa",
values: [["hello", "world"]],
}),
})
console.log(JSON.stringify(await res.json(), null, 2))