代码
/*
* JsonElement 结构:https://learn.microsoft.com/zh-cn/dotnet/api/system.text.json.jsonelement?view=net-7.0
* Get:
* GetFromJsonAsync()
* Post:
* StringContent post 请求传的body,body 为 json 对象
* new StringContent(JsonSerializer.Serialize(user), Encoding.UTF8, "application/json")
* new StringContent("a=1&b=2", Encoding.UTF8, "application/x-www-form-urlencoded")
* FormUrlEncodedContent 请求传的body,body 为 a=1&b=2 application/x-www-form-urlencoded 格式
* MultipartFormDataContent 请求传的body,body 为 multipart/form-data 格式
*
*/
发表评论