3

我希望在下面的示例代码中提交到 GET /Product/Category/Id,其中 Id 值是选定的下拉列表 id。但相反,我得到了/Product/Category?Id=Id,虽然它工作得很好,但看起来不像一个好的 URL

@using (Html.BeginForm("Category", "Product", FormMethod.Get))
{
<div class="category-search">
    <label for="CategoryList">Filter by Category</label>
    @Html.DropDownList("Id", (IEnumerable<SelectListItem>)ViewBag.CategoryList)
    <input type="submit" value="Filter" />
</div>   
}

我需要做些什么来保留漂亮的 URL

编辑
我的 Global.asax.cs 仅映射了以下路线

routes.MapRoute(
    "Default", // Route name
    "{controller}/{action}/{id}", // URL with parameters
    new { controller = "Home", action = "Index", id = UrlParameter.Optional }
        // Parameter defaults
);

在我的控制器中,我添加到 ViewBag (更喜欢使用 ViewModel,但它已经与 IPagedList 一起使用)

var categories = Session.QueryOver<Category>()
                        .OrderBy(c=>c.CategoryName).Asc
                        .List();
ViewBag.CategoryList = new SelectList(categories, "CategoryName", "CategoryName");

CategoryName我意识到在下拉列表中使用 id 和标签有点奇怪,但我使用的是 ID 的 GUID,这使得 URL 很糟糕。这是能够“破解” URL 有效的唯一情况,即我很高兴用户可以根据需要在 URL 中键入要过滤的类别,而不是在下拉列表中查找它

4

2 回答 2

1

我假设您正在尝试连接到默认路由,这意味着您需要一个小写字母iId匹配它。将其更改为id,它应该可以工作。

这是默认路线:

RouteTable.Routes.MapRoute(
    name: "Default",
    url: "{controller}/{action}/{id}",
    defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional });
于 2013-03-28T15:09:23.293 回答
1

我怀疑您是否能够在不捕获 Javascript 中提交的表单、抑制默认操作、提取信息、构建新操作字符串并将表单提交到该新操作字符串的情况下做您想做的事情。

问题是您提交的是表单值,而不是路由部分 - 表单中的 id 与路由部分中的 id 完全不同。当您使用FormMethod.Get.

重要的是要注意控制表单值如何提交回来的浏览器,而不是服务器端 MVC 代码。

于 2013-03-28T15:23:38.593 回答