如何让 Html.BeginForm 获取到正确的 MVC 路由

发布于 2024-08-05 01:53:49 字数 681 浏览 4 评论 0原文

在我的 ASP.NET MVC 应用程序中,我有以下 GET 输入字段:

<% using (Html.BeginForm("Search", "Products", FormMethod.Get) { %>
   <input type="text" name="searchQuery" id="searchQuery" />
<% } %

我希望它转到路由:

routes.MapRoute("ProductSearchRoute", 
    "Products/Search/{searchQuery}/{pageNumber}", 
new { controller = "Products", action = "Search", pageNumber = 1 });

问题是,它作为查询字符串转到 /Products,例如 Products?searchQuery=Motoroil。如何让它使用我的 ProductSearchRoute 并改为形成 /Products/Search/Motoroil ?

In my ASP.NET MVC application I have the following GET input field:

<% using (Html.BeginForm("Search", "Products", FormMethod.Get) { %>
   <input type="text" name="searchQuery" id="searchQuery" />
<% } %

I want this to go to the route:

routes.MapRoute("ProductSearchRoute", 
    "Products/Search/{searchQuery}/{pageNumber}", 
new { controller = "Products", action = "Search", pageNumber = 1 });

The problem is, it goes to /Products as query string, e.g. Products?searchQuery=Motoroil. How do I get it to use my ProductSearchRoute and instead form /Products/Search/Motoroil ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

三人与歌 2024-08-12 01:53:49

如果我理解正确的话,您是否正在尝试根据表单的输入动态更改表单发布的位置?

为此,您需要使用 javascript 来更改表单的目标属性。 BeginForm()用于渲染表单标签,从html角度来看,它是静态的。

If I understand you correctly, you're trying to dynamically alter the location the form posts to, based on the inputs of the form?

You'll need to use javascript for this, to alter the form's target attribute. The BeginForm() is for rendering the form tag, which from an html perspective, is static.

谁把谁当真 2024-08-12 01:53:49

你可以尝试:

<% using (Html.BeginRouteForm("ProductSearchRoute", FormMethod.Get)) %>

善良,

You could try:

<% using (Html.BeginRouteForm("ProductSearchRoute", FormMethod.Get)) %>

Kindness,

Dan

无语# 2024-08-12 01:53:49
public ActionResult SearchQuery (string searchQuery)
{
    return RedirectToAction (searchQuery, "/Products/Search" );
}

public ActionResult Search (string searchQuery)
{
    return View();
}
public ActionResult SearchQuery (string searchQuery)
{
    return RedirectToAction (searchQuery, "/Products/Search" );
}

public ActionResult Search (string searchQuery)
{
    return View();
}
二智少女 2024-08-12 01:53:49

正如 @Daniel Elliott 建议的那样,使用 BeginRouteForm。要正确生成 URL,您必须使用路由表中定义的相同名称设置路由值。

@using (Html.BeginRouteForm("ProductSearchRoute", new { searchQuery= "my query", pageNumber = 1 })
{

}

As @Daniel Elliott suggested, use BeginRouteForm. To get your URL to generate properly, you have to set the routevalues with the same name defined in your route table.

@using (Html.BeginRouteForm("ProductSearchRoute", new { searchQuery= "my query", pageNumber = 1 })
{

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文