解决歧义
我有一个带有 3 个创建方法重载的控制器:
public ActionResult Create() {}
public ActionResult Create(string Skill, int ProductId) {}
public ActionResult Create(Skill Skill, Component Comp) {}
在我的一个视图中,我想创建这个东西,所以我这样称呼它:
<div id="X">
@Html.Action("Create")
</div>
但我收到错误:
{"当前对控制器类型上的操作“创建”的请求 “XController”在以下操作方法之间不明确: System.Web.Mvc.ActionResult Create() 类型 X.Web.Controllers.XController System.Web.Mvc.ActionResult 在类型 X.Web.Controllers.XController 上创建(System.String, Int32) System.Web.Mvc.ActionResult 创建(X.Web.Models.Skill, X.Web.Models.Component) 类型 X.Web.Controllers.XController"}
但由于 @html.Action()
没有传递任何参数,因此应该使用第一个重载。它不会对我来说似乎模棱两可(这只意味着我不像 ac# 编译器那样思考)。
任何人都可以指出我的方法的错误吗?
I have a controller with 3 overloads for a create method:
public ActionResult Create() {}
public ActionResult Create(string Skill, int ProductId) {}
public ActionResult Create(Skill Skill, Component Comp) {}
in one of my views I want to create this thing so I call it like this:
<div id="X">
@Html.Action("Create")
</div>
but I get the error:
{"The current request for action 'Create' on controller type
'XController' is ambiguous between the following action methods:
System.Web.Mvc.ActionResult Create() on type
X.Web.Controllers.XController System.Web.Mvc.ActionResult
Create(System.String, Int32) on type X.Web.Controllers.XController
System.Web.Mvc.ActionResult Create(X.Web.Models.Skill,
X.Web.Models.Component) on type X.Web.Controllers.XController"}
but since the @html.Action()
is passing no parameters, the first overload should be used. It doesn't seem ambiguous to me (which only means I don't think like a c# compiler).
can anyone point out the error of my ways?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下,ASP.NET MVC 不支持重载方法。您必须使用不同的操作或可选参数。例如:
将更改为:
OR:
OR:
另请参阅此问答一个
By default, overloading methods is not supported in ASP.NET MVC. You have to use difference actions or optional parameters. For example:
will changes to:
OR:
OR:
See also this Q&A
您可以使用
ActionName
属性为所有 3 个方法指定不同的操作名称You can use
ActionName
attribute to specify different action names for all the 3 methods