2

我有 2 种方法,如下所示

public string Download(string a,string b) 
public string Download(string a)

但是 MVC3 With IIS 5.1 给出了这两种方法不明确的运行时错误。

我该如何解决这个问题?

4

2 回答 2

3

由于 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)
于 2012-05-15T13:03:37.110 回答
0

在我看来,您应该尝试使用ASP.NET Routing。只需添加新的 MapRoute。您可以在这篇文章中查看示例

于 2012-05-15T13:42:00.843 回答