HttpClient PutAsync 不会向 api 发送参数

本文关键字:参数 api PutAsync HttpClient | 更新日期: 2023-09-27 18:33:38

在控制器上放置如下:

[HttpPut]
[ActionName("putname")]
public JsonResult putname(string name)
{
    var response = ...
    return Json(response);  
}

问题出在通过以下方式使用此 API 时

using (httpClient = new HttpClient())
{
    string name = "abc";
    string jsonString = JsonConvert.SerializeObject(name);
    var requestUrl = new Uri("http:...../controller/putname/");
    using (HttpContent httpContent = new StringContent(jsonString))
    {
        httpContent.Headers.ContentType = new MediaTypeHeaderValue("application/json");
        HttpResponseMessage response = httpClient.PutAsync(requestUrl, httpContent).Result;
    }

此代码不会将参数名称传递给控制器。我什至尝试将 uri 更改为/putname/" + name。

HttpClient PutAsync 不会向 api 发送参数

以下是对我有用的方法:

var jsonString = "{'"appid'":1,'"platformid'":1,'"rating'":3}";
var httpContent = new StringContent(jsonString, Encoding.UTF8, "application/json");            
var message = await _client.PutAsync(MakeUri("App/Rate"), httpContent);
Assert.AreEqual(HttpStatusCode.NoContent, message.StatusCode);

和我的操作方法:

public void PutRate(AppRating model)
{
   if (model == null)
      throw new HttpResponseException(HttpStatusCode.BadRequest);
   if (ModelState.IsValid)
   {
     // ..
   }      
}

和模型

public class AppRating
{
    public int AppId { get; set; }
    public int PlatformId { get; set; }
    public decimal Rating { get; set; }
} 

-斯坦

对我来说,

它工作正常:

            string requestUrl = endpointUri + "/Files/";
            var jsonString = JsonConvert.SerializeObject(new { name = "newFile.txt", type = "File" }); 
            HttpContent httpContent = new StringContent(jsonString);
            httpContent.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue ("application/json");          
            HttpClient hc = new HttpClient();
            //add the header with the access token
            hc.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", accessToken);
            //make the put request
            HttpResponseMessage hrm = (await hc.PostAsync(requestUrl, httpContent));
            if (hrm.IsSuccessStatusCode)
            {
               //stuff
            }