Html.BeginForm 和 HTML 属性不指定控制器和操作
我喜欢它的简洁性
using (Html.BeginForm())
,但讨厌添加 HTML 属性需要指定控制器、操作和表单方法。
using (Html.BeginForm("Action", "Controller", FormMethod.Post,
new { id = "inactivate-form" })
有没有办法使用 Html.BeginForm
并为表单指定 HTML 属性,而无需手动连接其他所有内容?
I like the cleanliness of
using (Html.BeginForm())
And hate that adding HTML attributes requires specifying the controller, action, and form method.
using (Html.BeginForm("Action", "Controller", FormMethod.Post,
new { id = "inactivate-form" })
Is there a way to use Html.BeginForm
and specify HTML attributes for the form without manually wiring everything else up?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为什么不直接使用纯 html 呢?
Why would you not just use plain html?
您可以创建一个自定义扩展,添加“Id-ed”表单:
然后用法就变成了
You could create a custom extension that adds an 'Id-ed' form:
Usage then just becomes
类似于 @nick-olsen 的回答,使用
null
作为操作/控制器参数:BeginForm
方法最终调用System.Web.Mvc.RouteValuesHelpers.MergeRouteValues
,它会从RequestContext.RouteData
中查找操作和控制器名称(如果它们是 < code>null 回发到创建表单的同一操作/控制器。Similar to @nick-olsen's answer use
null
for the action/controller parameters:The
BeginForm
method eventually callsSystem.Web.Mvc.RouteValuesHelpers.MergeRouteValues
which looks up the action and controller names from theRequestContext.RouteData
if they'renull
posting back to the same action/controller as the form was created from.