GET請求 查詢
// 獲取所有用戶信息
http://localhost:3000/users// 獲取id為1的用戶信息
http://localhost:3000/users/1// 獲取公司的所有信息
http://localhost:3000/companies// 獲取公司id為1的信息
http://localhost:3000/companies/1// 獲取所有公司id為3的用戶
http://localhost:3000/companies/3/users// 根據(jù)公司名字獲取信息
http://localhost:3000/companies?name=Google// 更新多個名字獲取公司信息
http://localhost:3000/companies?name=Google&name=Apple// 獲取一頁中只有兩條數(shù)據(jù)
http://localhost:3000/companies?_page=1&_limit=2// 升序排序 asc升序 desc降序
http://localhost:3000/companies?_sort=name&_order=desc// 獲取年齡19或19以上的數(shù)據(jù)
http://localhost:3000/users?age_gte=19// 獲取年齡19到40之間的數(shù)據(jù)
http://localhost:3000/users?age_gte=19&age_lte=40// 搜索用戶信息
http://localhost:3000/users?q=z
使用Postman
POST請求 添加
DELETE請求 刪除
刪除id為5的
PATCH請求 更新
更新id為3的數(shù)據(jù)
當前id為3的name是lisi
將JSONSERVER的所有數(shù)據(jù)拿到本地來
- 配置package.json
"json:server:remote":"json-server http://jsonplaceholder.typicode.com/db"