gpt4 book ai didi

c# - 结果未知的 PostAsJsonAsync

转载 作者:太空宇宙 更新时间:2023-11-03 15:48:31 24 4
gpt4 key购买 nike

我正在尝试使用 HttpClient 和 C#。我正在尝试发布到 PHP REST 服务器并使用其返回的 JSON。当我发布到返回“Hello World!”的终点时一切安好。但是当它返回时{ "key1": "test1", "key2": "test3"} 我无法解析它。

这是我的代码:

private static async Task RunAsyncPost(string requestUri, object postValues)
{
using (var client = new HttpClient())
{
// Send HTTP requests
client.BaseAddress = new Uri("myUrl");
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

try
{
// HTTP POST
var response = await client.PostAsJsonAsync(requestUri, postValues);
response.EnsureSuccessStatusCode(); // Throw if not a success code.
if (response.IsSuccessStatusCode)
{
var result = await response.Content.ReadAsStringAsync();
Debug.WriteLine(result);
}
}
catch (HttpRequestException e)
{
// Handle exception.
Debug.WriteLine(e.ToString());
throw;
}
}
}

问题似乎出在这一行:

var result = await response.Content.ReadAsStringAsync();

很可能我需要将其更改为 ReadAsAsync<>,但我已经尝试了很多选项,但结果保持为空或者出现运行时错误。

我感兴趣的终点将返回一个不同长度的数组,所以我不能使用强类型类。

[更新]

我在 Chrome 中使用 Postman Rest Extension 将两个表单数据键值对发送到同一个 URL,Postman 返回了正确的值。所以我假设我的 PHP REST 服务器没问题。

这是我的调用方法:

public void TestPost()
{
RunAsyncPost("api/postTest/", new { question_8 = "foo", question_9 = "bar" }).Wait();
}

最佳答案

如果您的返回值的长度为 N,这仅在运行时已知,您有两种选择(我将使用 Json.NET 进行反序列化):

  1. 将返回的json解析为dynamic目的。如果您在编译时知道 key ,请使用此方法:

    var json = await response.Content.ReadAsStringAsync();
    // Deserialize to a dynamic object
    var dynamicJson = JsonConvert.DeserializeObject<dynamic>(json);

    // Access keys as if they were members of a strongly typed class.
    // Binding will only happen at run-time.
    Console.WriteLine(dynamicJson.key1);
    Console.WriteLine(dynamicJson.key2);
  2. 将返回的json解析为Dictionary<TKey, TValue> , 在这种情况下它将是 Dictionary<string, string> :

    var json = await response.Content.ReadAsStringAsync();
    var dictionary = JsonConvert.DeserializeObject<Dictionary<string, string>>(json);

    foreach (KeyValuePair<string, string> kvp in dictionary)
    {
    Console.WriteLine("Key: {0}, Value: {1}", kvp.Key, kvp.Value);
    }

作为旁注,这样做:

RunAsyncPost("api/postTest/", new { question_8 = "foo", question_9 = "bar" }).Wait();

async-await 中的反模式. You shouldn't expose sync wrappers over asynchronous methods .相反,调用同步 API,例如 WebClient 提供的 API。 .

关于c# - 结果未知的 PostAsJsonAsync,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26975776/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com