鼎鼎知识库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

07.参数传递方式.md 211B

5 jaren geleden
12345678910111213
  1. > query方式
  2. - 请求方式是get方法
  3. -例如: /api/second/getsecondbyid?projectId=1
  4. > body方式
  5. - 请求方式为post方式
  6. - 请求体:{"projectId":1}
  7. > 路由方式
  8. - /api/second/getsecondbyid/1