学海无涯

导航

2023年3月23日 #

Fetch 项目级封装

摘要: http.ts 阅读全文

posted @ 2023-03-23 10:44 宁静致远. 阅读(22) 评论(0) 推荐(0) 编辑

Fetch 基本操作 Get Post Delete Put

摘要: //删除请求 async function DeleteModel(model: Customer) { let url = `http://localhost:57679/api/Customers/${model.id}` await fetch(url, { method: 'delete' 阅读全文

posted @ 2023-03-23 10:43 宁静致远. 阅读(125) 评论(0) 推荐(0) 编辑