我是ASP.NET MVC編程的新手。我想知道返回View(模型)做了什麼。什麼是返回View(model)在ASP.NET MVC中的含義?
public ActionResult CreateProducts(ProductsModel model)
{
/// Some code here.
return View(model);
}
我是ASP.NET MVC編程的新手。我想知道返回View(模型)做了什麼。什麼是返回View(model)在ASP.NET MVC中的含義?
public ActionResult CreateProducts(ProductsModel model)
{
/// Some code here.
return View(model);
}
它將與名稱「CreateProducts」和控制器通ProductsModel在「模式」數據,將使用與呈現HTML綁定返回查看(HTML頁)。
當您點擊URL時,如http://blah-blah/Products/CreateProducts
, 這樣的控制器(在這種情況下,產品控制器)對象被創建和初始化。
此控制器包含通過上述url調用的操作方法CreateProducts
。
控制器的工作是綁定模型和視圖並在瀏覽器中將其呈現爲HTML。
這是由View(model)
方法精確完成的。
希望它可以幫助..