1. 程式人生 > >ASP.NET MVC 網頁應用 action 傳遞的Model

ASP.NET MVC 網頁應用 action 傳遞的Model

檢視介面 


@using {引用模型}
@model {具體模型}




<html>
    @Model.{具體模型的屬性}
</html>



注意區分Model的大小寫
引入時,使用@model,呼叫使用@Model

多個模型,泛型?

@using 引用模型路徑
@model IEnumerable<{模型}>


@{
foreach(book b in Model)   //{具體呼叫}

}

@Model

參考文章 https://www.imooc.com/article/71888