總結髮現ASP.NET MVC中Controller向View傳值的方式共有6種,分別是:html
首先咱們須要明確的是咱們從controller向view傳值的時候,這些方式分別處於什麼樣的地位:緩存
咱們通常會向頁面傳遞一個主要的類型的數據,通常是狀況下是一個List<Model>,若是隻有這個,很好辦,一個model對象就解決了,可是每每除此以外還會有一些額外的零散的數據須要傳遞,好比分頁的pageIndex,或者pageCount等等,這樣的數據用原有的model就無能爲力了,這時候,咱們就能夠用ViewBag、ViewData、TempData來傳遞這些額外的數據。app
視圖數據能夠經過ViewBag屬性訪問,它主要是爲了從Controller到view進行傳值用的,相似有所使用的ViewData[] 字典類。對於ViewBag是如此的強大,意味着你能動態的set/get 值,增長任何數量的的額外字段而不須要強類型的檢測。如:post
control控制器spa
public ActionResult Index() { List<string> colors = new List<string>(); colors.Add("red"); colors.Add("green"); colors.Add("blue"); ViewData["listColors"] = colors; ViewData["dateNow"] = DateTime.Now; ViewData["name"] = "Hajan"; ViewData["age"] = 25; return View();
control 控制器3d
public ActionResult Index() { List<string> colors = new List<string>(); colors.Add("red"); colors.Add("green"); colors.Add("blue"); ViewBag.ListColors = colors; //colors is List ViewBag.DateNow = DateTime.Now; ViewBag.Name = "Hajan"; ViewBag.Age = 25; return View(); }
你和上面的對比 你看見了不一樣嗎?code
ViewBag orm
咱們能夠認爲 ViewBag=ViewData+Dynamic wrapper around the ViewData ,接下來你就能夠體會到這個公式的含義了。htm
一、conroller向view傳值對象
二、view向view傳值:
三、利用ViewBag傳遞一個對象:
ViewData
一、ViewData的基本用法
二、ViewData 轉換成 ViewBag:
三、ViewBag 轉換成 ViewData:
TempData
TempData用於在Redirect的時候保存數據,ViewData、ViewBag在跳轉後就會變成null,可是TempData不會,下面是TempData的用法示例:
public ActionResult Index() { var model = new Review() { Body = "Start", Rating=5 }; TempData["ModelName"] = model; return RedirectToAction("About"); } <pre><pre lang="cs">public ActionResult About() { var model= TempData["ModelName"]; return View(model); }
普通頁面傳遞model:
//Action代碼 public ActionResult Index() { Product p = new Product(); p.Name = "Toy"; return View(p); } 在View中調用的代碼: Product : <%: ((Product)Model).Name %>
向強類型試圖傳遞model
一、WebForm Engine的試圖的實現:
//Aciton的代碼 public ActionResult Index() { Product p = new Product(); p.Name = "Toy"; return View(p); } View中的代碼 聲明類型 <%@ Page Inherits="System.Web.Mvc.ViewPage<Product>" %> 直接用Model調用該對象 <h2> Product Name: <%: Model.Name %> </h2>
二、Razor Engine的實現:
在Razor中聲明類型的方式: @model Mvc3App.Models.Product 在Razor中調用對象的方式: <h2> Product: @Model.Name </h2>