我一直在寻找这个论坛和其他人来解决一个看似简单的问题。目标是调用2个API并对收到的数据进行一些计算。但是,当我从下面的代码中调用任何API时,对PostAsJsonAsync调用没有响应。调试显示该命令已执行,但此调用后的代码从未执行。我确实在Chrome开发者工具中收到了以下消息。
'iisexpress.exe'(CLR v4.0.30319: / LM / W3SVC / 2 / ROOT-2-130904674774978518):已加载 'C:\ Users \ ADMIN \ AppData \ Local \ Temp \ Temporary ASP.NET 文件\ VS \ 6d7d5266 \ 5b17a55b \ App_Web_vu1twtot.dll”。找不到或打开 PDB文件。 'iisexpress.exe'(CLR v4.0.30319: / LM / W3SVC / 2 / ROOT-2-130904674774978518):已加载 'C:\ Users \ ADMIN \ AppData \ Local \ Temp \ Temporary ASP.NET 文件\ VS \ 6d7d5266 \ 5b17a55b \ App_Web_h35301am.dll”。
线程0x3b1c已退出,代码为0(0x0)。 线程0x34a4已退出,代码为0(0x0)。
使用的API是来自http://jsonplaceholder.typicode.com/的简单假API。 如果我在JS中使用Ajax,这个API和我测试的其他API会很好。请帮帮我。
以下代码取自http://www.asp.net/web-api/overview/advanced/calling-a-web-api-from-a-net-client
的ASP.NET教程using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
public class Product
{
public double userid { get; set; }
public double id { get; set; }
public string title { get; set; }
public string body { get; set; }
}
public partial class _Default : Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
RunAsync().Wait();
}
static async Task RunAsync()
{
using (var client = new HttpClient())
{
client.BaseAddress = new Uri("http://jsonplaceholder.typicode.com");
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
// HTTP POST
var gizmo = new Product() { userid = 11, id = 100, title = "Widget11", body = "Widget11" };
HttpResponseMessage response = await client.PostAsJsonAsync("/posts/1", gizmo);
if (response.IsSuccessStatusCode)
{
}
}
}
}
答案 0 :(得分:0)
由于太多的异步方法,我遇到了类似的问题。
答案 1 :(得分:0)
我对网络表单并不多,但我在WPF应用程序中尝试过它!
使用MainWindow.xaml中的以下按钮:
<Grid>
<Button Name='api_btn' Click="api_btn_Click">Call Api</Button>
</Grid>
将以下代码粘贴到MainWindow.xaml.cs中:
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace ApiTest
{
public class Description
{
public int id { get; set; }
public int userId { get; set; }
public string title { get; set; }
public string body { get; set; }
}
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private async void api_btn_Click(object sender, RoutedEventArgs e)
{
try
{
using (var client = new HttpClient())
{
client.BaseAddress = new Uri("https://jsonplaceholder.typicode.com");
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
//HttpsPostRequest(URL);
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
Description desc = null;
var response = await client.GetAsync("posts/1").ConfigureAwait(false);
if (response.IsSuccessStatusCode)
{
desc = await response.Content.ReadAsAsync<Description>();
}
}
}
catch (Exception ex)
{
Debug.WriteLine("Exception caught.", ex);
//throw;
}
}
}
}
答案 2 :(得分:0)
我遇到了同样的问题,我解决了这个问题。 注意这个问题,你有一个名为“RunAsync”的Async方法。 在这个方法中,你将PostAsJsonAsync称为Async。
如果你使用嵌套异步方法,可能你的结果中会有“DeadLock”。 为了防止这个问题,在第二个,第三个和超过异步方法结束时使用“ConfigureAwait(false)” 例如:
public static async Task RunAsync()
{
using (var client = new HttpClient())
{
client.BaseAddress = new Uri("http://jsonplaceholder.typicode.com");
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
// HTTP POST
var gizmo = new Product() { userid = 11, id = 100, title = "Widget11", body = "Widget11" };
HttpResponseMessage response = await client.PostAsJsonAsync("/posts/1", gizmo).ConfigureAwait(false);
if (response.IsSuccessStatusCode)
{
}
}
答案 3 :(得分:-1)
这正常工作。
HttpResponseMessage响应=等待客户端。PostAsJsonAsync(“ / posts / 1”,gizmo).ConfigureAwait(false);