ViewResult() 和 ActionResult() 的區別 - Difference Between ViewResult() and ActionResult()

問題:

What is the difference between ViewResult() and ActionResult() in ASP.NET MVC? ASP.NET MVC 中的ViewResult()ActionResult()什麼區別?

public ViewResult Index()
{
    return View();
}

public ActionResult Index()
{
    return View();
}

解決方案:

參考一: https://stackoom.com/question/Ju3x
參考二: Difference Between ViewResult() and ActionResult()
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章