一、View中model的关联
1.当关联单一对象时,需要关联相应命名空间下的模型对象
@model MvcMusicStore.Models.Album
显示:
<div class="display-label">
@Html.DisplayNameFor(model => model.Title)
</div>
2.关联对象集合时,则需添加IEnumerable<相应命名空间下的模型对象>,以方便视图知道传入的一个集合
@model IEnumerable< MvcMusicStore.Modles.Album>
显示:
<table>
<tr>
<th>Title</th>
<th>Price</th>
<th></th>
</tr>
@foreach(var item in Model){
<tr>
<td>@item.Title</td>
<td>@String.Format("{0:c}",item.Price)</td>
<td>@Html.ActionLink("Buy", "Buy", new {id=item.AlbumId})</td>
</tr>
}
</table>
二、@Html.ActionLink几种参数格式
1.Html.ActionLink("linkText","actionName")
该重载的第一个参数是该链接要显示的文字,第二个参数是对应的控制器的方法,
默认控制器为当前页面的控制器,如果当前页面的控制器为Products,则 Html.ActionLink("detail","Detail")
则会生成 <a href="/Products/Detail">all</a>
2.Html.ActionLink("linkText","actionName","controlName")
该重载比第一个重载多了一个参数,他指定了控制器的名称,
如Html.ActionLink("detail","Detail","Products")则会生成
<a href="Products/Detail">all</a>
3.Html.ActionLik("linkText","actionName",routeValues)
routeValue可以向action传递参数,如Html.ActionLink("detail","Detail",new { id=1})
会生成 <a href="Products/Detail/1">detail</a>,
此处假设当前的控制器是Products.
4.Html.ActionLink("linkText","actionName",routeValues,htmlAttributes)
htmlAttribute可以设置<a>标签的属性,
如 Html.ActionLink("detail","Detail",new{id=1},new{ target="_blank"})
会生成 <a href="Products/Detail/1" target="_blank">detail</a>,
需要主要的是如果写成 new{ target="_blank",class="className"}则会报错,
因为class是关键字,此处应该写成 @class="className"。
五 Html.ActionLink("linkText","actionName","controlName",routeValues,htmlAttributes)
该重载包含了上面提到的所有参数类型