public async Task<ActionResult> News(string city) { NewService newService=new NewService(); NewsModel news=await newsService.GetNews(city); return View(news); }
相比同步操做,只需作三處改動:爲操做添加async修飾符,返回類型改成Task ,在須要長時間運行的方法前添加await git