我有 2 种方法,如下所示
public string Download(string a,string b)
public string Download(string a)
但是 MVC3 With IIS 5.1 给出了这两种方法不明确的运行时错误。
我该如何解决这个问题?
我有 2 种方法,如下所示
public string Download(string a,string b)
public string Download(string a)
但是 MVC3 With IIS 5.1 给出了这两种方法不明确的运行时错误。
我该如何解决这个问题?
由于 string 可以为空,因此从 MVC 的角度来看,这些重载确实是模棱两可的。只需检查是否b
为空(如果您想要默认值,可以将其设为可选参数)。
另一方面,您可以尝试自定义ActionMethodSelectorAttribute
实现。这是一个例子:
public class ParametersRequiredAttribute : ActionMethodSelectorAttribute
{
#region Overrides of ActionMethodSelectorAttribute
/// <summary>
/// Determines whether the action method selection is valid for the specified controller context.
/// </summary>
/// <returns>
/// true if the action method selection is valid for the specified controller context; otherwise, false.
/// </returns>
/// <param name="controllerContext">The controller context.</param><param name="methodInfo">Information about the action method.</param>
public override bool IsValidForRequest(ControllerContext controllerContext, MethodInfo methodInfo)
{
var parameters = methodInfo.GetParameters();
foreach (var parameter in parameters)
{
var value = controllerContext.Controller.ValueProvider.GetValue(parameter.Name);
if (value == null || string.IsNullOrEmpty(value.AttemptedValue)) return false;
}
return true;
}
#endregion
}
用法:
[ParametersRequired]
public string Download(string a,string b)
// if a & b are missing or don't have values, this overload will be invoked.
public string Download(string a)
在我看来,您应该尝试使用ASP.NET Routing。只需添加新的 MapRoute。您可以在这篇文章中查看示例