gpt4 book ai didi

c# - 异步方法导致应用程序崩溃

转载 作者:太空狗 更新时间:2023-10-30 01:30:50 27 4
gpt4 key购买 nike

我正在创建一个应用程序,它以 JSON 格式从网络服务器请求少量数据,使用 Json.net 反序列化数据,并返回一个自定义对象列表。我正在使用 Android 手机调试应用程序。

然后使用创建的列表创建 ListView 。 ui 代码似乎适用于插入列表而不是异步方法的预制对象。异步方法使应用程序崩溃。

public partial class Membership : ContentPage
{
int increment = 1;

public Membership()
{
//begin task
var task = GetMembers(increment);

//irrelevant stuff happening

//wait for task to complete to continue execution
List<Person> people = task.Result;


// Create the ListView.
ListView listView = new ListView
{

// Source of data items.
ItemsSource = people,

// Define template for displaying each item.
// (Argument of DataTemplate constructor is called for
// each item; it must return a Cell derivative.)
ItemTemplate = new DataTemplate(() =>
{
// Create views with bindings for displaying each property.
Label nameLabel = new Label();
Label statusLabel = new Label();


nameLabel.SetBinding(Label.TextProperty, "name");
statusLabel.SetBinding(Label.TextProperty, "status");

// Return an assembled ViewCell.
return new ViewCell
{
View = new StackLayout
{
Padding = new Thickness(0, 5),
Orientation = StackOrientation.Horizontal,
Children =
{
//boxView,
new StackLayout
{
VerticalOptions = LayoutOptions.Center,
Spacing = 0,
Children =
{
nameLabel,
statusLabel
}
}
}
}
};
})
};

// Build the page.
this.Content = new StackLayout
{
Children =
{
header,
listView
}
};


}

以及有问题的异步任务:

async Task<List<Person>> GetMembers(int increment)
{
string jsonString;

using (var client = new HttpClient())
{
//gets the members from the server in json format
//increment defines which set of members (1-50, 51-100, etc)
var responseString = await client.GetStringAsync("GENERIC URL" + "increment=" + increment.ToString());
jsonString = responseString;
}

List<Person> memberList = JsonConvert.DeserializeObject<List<Person>>(jsonString);

return memberList;
}

现在,我通过绕过异步任务并创建了几个预定义人员的列表来测试这段代码,它运行良好。

我理解使用 task.Result;方法将阻塞应用程序,直到异步任务完成,但是,单元测试时速度没有问题,所以我有点困惑。任何帮助将不胜感激。

最佳答案

因为你说:

"No error messages, it just freezes."

在评论中,我确定你在这里遇到了僵局。 .Result.Wait() 的问题在此 SO-Ticket 中得到了很好的描述:

await works but calling task.Result hangs/deadlocks

您的延续尝试访问被 .Result 阻止的上下文。您可以像这样重建您的方法:

public async Task InitializeMembership()
{
//begin task
var task = GetMembers(increment);

//irrelevant stuff happening

//wait for task to complete to continue execution
List<Person> people = await task;

//Do further stuff
}

如您所见,我会使用方法而不是构造函数,因为我认为异步构造函数不是最佳实践。我希望这可以解决您的问题。

关于c# - 异步方法导致应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42850278/

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