3

我正在开发一个 Xamarin.Forms (4.1.0) 应用程序,它可以进行 REST 调用。

调用我的 Web 服务时,应用程序崩溃,无一例外。

仅在输出中收到此消息:

07-08 19:09:04.792 F/        (22723): * Assertion at /Users/builder/jenkins/workspace/xamarin-android-d16-1/xamarin-android/external/mono/mono/mini/debugger-agent.c:4387, condition `is_ok (error)' not met, function:get_this_async_id, Could not execute the method because the containing type 'System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[RestQueryResultT_REF]', is not fully instantiated. assembly:<unknown assembly> type:<unknown type> member:(null)
07-08 19:09:04.793 F/libc    (22723): Fatal signal 6 (SIGABRT), code -6 (SI_TKILL) in tid 22723 (io.puffix), pid 22723 (io.puffix)

这是代码:

RestQueryResultT queryResult;

using (HttpClient client = new HttpClient())
using (HttpResponseMessage response = await client.GetAsync(serviceUri))
{
    string result = await response.Content.ReadAsStringAsync();
    queryResult = ParseResult(result);
}

return queryResult;

调用由事件处理程序方法进行,由 UI 操作触发。GetAsync 调用使应用程序崩溃。

有什么想法可以解决这个问题吗?

4

2 回答 2

14

这似乎是一个问题,并且已经在Github. 您可以在这些线程中看到讨论:

  1. 在具有返回类型任务的方法内等待使应用程序崩溃
  2. xamarin-android/问题
  3. xamarin-ios/问题

解决方法是使用GetAwaiter().GetResult()而不是await

作品:

response = _client.GetAsync(uri).GetAwaiter().GetResult();

不工作:

await _client.GetAsync(uri);
于 2019-07-09T02:00:15.560 回答
1

你能尝试一个较小的响应吗?我遇到了同样的问题(在我的情况下,当我使用来自服务器的 2 或 3 条记录进行测试时,它工作正常,但如果我使用 10 条记录,它就会崩溃)。我不得不改变模拟器。我现在正在使用连接到计算机的真实手机。

于 2020-07-27T05:17:54.563 回答