ASP.NETコア2.0を表示するページには、どのように非同期メソッドからアクションへリダイレクトするために、非同期メソッドを実行し、その後
public IActionResult Processing()
{
DoWork();
return View(); // returning Processing.cshtml
// which contains page with animation
}
private async void DoWork()
{
await DoSomething();
// and here I want to redirect
// from page with animation to
// to an action
}
をリダイレクトしながら? await DoSomething()
がデータと連動している間は、常にアニメーションページを表示する必要があります。
あなたのアプローチには注意が必要です。 'Task'を待たずに' async void'を実行するだけで、問題を尋ねています。私は非同期プログラミングについて少しお読みになることをお勧めします。 –