筆記之一:關於.net MVC的分部視圖

來源:互聯網
上載者:User

分部視圖(Patial)一般分為兩種,一種是靜態,一種為動態。

靜態視圖毋庸贅言,一般多用於logo條之類的可以整體搬移重用的靜態結構。在share檔案夾中建立並在頁面中用Html.Partial("patial_name")

調用即可。

動態視圖又分兩種——主要指Model傳入方式。

第一種為分享首頁面的Model。直接在頁面中用幾乎等同於靜態試圖的方法調用:Html.RenderPartial("patial_name",
Model)

其中Model可以為首頁面中任何類型的資料,但是傳入作為參數的時候必須強型別化,如:Html.RenderPartia;("_userInfo",
(Business.Author)Model.userInfo)

第二種為後台傳入資料。

方法為在後台建立一個新的Controller和相應的Action(例如為PatialController和_userInfo)

public class PatialController : Controller    {        public PartialViewResult _userInfo()        {            //商務邏輯            return PartialView(Model);        }

在首頁面中調用:Html.RenderAction("action_name" ,"controller_name")

至於哪種方法比較好……很難說

目前為止個人比較喜歡後者。因為它對業務的分離更徹底。更適合當今條件下分工合作的原則。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.