即使尚未加载数据,Asp .Net核心加载页

时间:2019-07-05 11:48:24

标签: c# asp.net-core

由于要获取数据OnGet处理程序,我的页面需要花费一些时间来加载

public async Task OnGet()
{
    Consumos = await _consumoService.GetAll();
}

我的问题是,我已使其异步,因此数据被加载到单独的线程中,但是访问页面仍然需要一些时间。为什么会这样?

0 个答案:

没有答案