1,method 是 get 方式的时候,会将数据转换成 query string
method 为 post 时,header为{"Content-Type": "application/x-www-form-urlencoded"}会将数据转换成 query string
method 为 post 时,header为{"Content-Type":"application/json"}
的数据,会对数据进行 JSON 序列化
1,method 是 get 方式的时候,会将数据转换成 query string
method 为 post 时,header为{"Content-Type": "application/x-www-form-urlencoded"}会将数据转换成 query string
method 为 post 时,header为{"Content-Type":"application/json"}
的数据,会对数据进行 JSON 序列化