12 asp.net-mvc-3 asp.net-mvc-2
我需要创建一个基于我的搜索条件的链接.例如:
localhost/Search?page=2&Location.PostCode=XX&Location.Country=UK&IsEnabled=true
Run Code Online (Sandbox Code Playgroud)
此链接中的参数是我的SearchViewModel中的属性值.
理想情况下,我希望有以下几点:
@Html.ActionLink("Search","User", Model.SearchCriteria)
Run Code Online (Sandbox Code Playgroud)
这是默认支持还是我需要将我的视图模型的属性传递给RouteValueDictionary类型对象然后使用它?
我的目标是编写一个分页助手,它将生成页码并将搜索条件参数附加到生成的链接.
例如
@Html.GeneratePageLinks(Model.PagingInfo, x => Url.Action("Index"), Model.SearchCriteria)
Run Code Online (Sandbox Code Playgroud)
我已将您的解决方案与PRO ASP.NET MVC 3书中的建议结合起来,最后得出以下结论:
助手用于生成链接.有趣的部分是pageUrlDelegate参数,稍后用于调用Url.Action以生成链接:
public static MvcHtmlString PageLinks(this HtmlHelper html, PagingInfoViewModel pagingInfo,
Func<int,String> pageUrlDelegate)
{
StringBuilder result = new StringBuilder();
for (int i = 1; i <= 5; i++)
{
TagBuilder tagBuilder = new TagBuilder("a");
tagBuilder.MergeAttribute("href", pageUrlDelegate(i));
tagBuilder.InnerHtml = i.ToString();
result.Append(tagBuilder.ToString());
}
return MvcHtmlString.Create(result.ToString());
}
Run Code Online (Sandbox Code Playgroud)
然后在视图模型中:
@Html.PageLinks(Model.PagingInfo, x => Url.Action("Index","Search", new RouteValueDictionary()
{
{ "Page", x },
{ "Criteria.Location.PostCode", Model.Criteria.Location.PostCode },
{ "Criteria.Location.Town", Model.Criteria.Location.Town},
{ "Criteria.Location.County", Model.Criteria.Location.County}
}))
)
Run Code Online (Sandbox Code Playgroud)
我仍然对字符串中的属性名称不满意,但它现在必须要做.
谢谢 :)
Dar*_*rov 11
理想情况下,我希望有以下几点:
@Html.ActionLink("Search","User", Model.SearchCriteria)
不幸的是,这是不可能的.您必须逐个传递属性.你确实可以使用带有RouteValueDictionary以下内容的重载:
@Html.ActionLink(
"Search",
"User",
new RouteValueDictionary(new Dictionary<string, object>
{
{ "Location.PostCode", Model.SearchCriteria.PostCode },
{ "Location.Country", Model.SearchCriteria.Country },
{ "IsEnabled", Model.IsEnabled },
})
)
Run Code Online (Sandbox Code Playgroud)
当然,编写自定义ActionLink帮助程序可能更好:
public static class HtmlExtensions
{
public static IHtmlString GeneratePageLink(this HtmlHelper<MyViewModel> htmlHelper, string linkText, string action)
{
var model = htmlHelper.ViewData.Model;
var values = new RouteValueDictionary(new Dictionary<string, object>
{
{ "Location.PostCode", model.SearchCriteria.PostCode },
{ "Location.Country", model.SearchCriteria.Country },
{ "IsEnabled", model.IsEnabled },
});
return htmlHelper.ActionLink(linkText, action, values);
}
}
Run Code Online (Sandbox Code Playgroud)
然后:
@Html.GeneratePageLink("some page link text", "index")
Run Code Online (Sandbox Code Playgroud)
另一种可能性是仅传递id并使控制器操作从呈现此视图的控制器操作中最初获取它的任何位置获取相应的模型和值.
| 归档时间: |
|
| 查看次数: |
13364 次 |
| 最近记录: |