ASP.NET MVC控制器动作与自定义参数转换
本文关键字:自定义 参数 转换 NET MVC 控制器 ASP | 更新日期: 2023-09-27 18:17:03
我想设置一个ASP。. NET MVC路由,看起来像:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{idl}", // URL with parameters
new { controller = "Home", action = "Index", idl = UrlParameter.Optional } // Parameter defaults
);
路由像这样的请求…
Example/GetItems/1,2,3
…到我的控制器动作:
public class ExampleController : Controller
{
public ActionResult GetItems(List<int> id_list)
{
return View();
}
}
问题是,我如何设置将idl
url参数从string
转换为List<int>
并调用适当的控制器动作?
我在这里看到一个相关的问题,使用OnActionExecuting
预处理字符串,但没有改变类型。我不认为这将在这里为我工作,因为当我在控制器中覆盖OnActionExecuting
并检查ActionExecutingContext
参数时,我看到ActionParameters
字典已经具有一个空值的idl
键-大概是尝试从字符串转换到List<int>
…这是我想控制的路由的一部分。
这可能吗?
一个不错的版本是实现您自己的模型绑定器。你可以在这里找到一个示例
我试着给你一个想法:
public class MyListBinder : IModelBinder
{
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
string integers = controllerContext.RouteData.Values["idl"] as string;
string [] stringArray = integers.Split(',');
var list = new List<int>();
foreach (string s in stringArray)
{
list.Add(int.Parse(s));
}
return list;
}
}
public ActionResult GetItems([ModelBinder(typeof(MyListBinder))]List<int> id_list)
{
return View();
}
就像slfan所说的,自定义模型绑定器是可行的方法。这是我博客上的另一种方法,它是通用的,支持多种数据类型。它还优雅地退回到默认的模型绑定实现:
public class CommaSeparatedValuesModelBinder : DefaultModelBinder
{
private static readonly MethodInfo ToArrayMethod = typeof(Enumerable).GetMethod("ToArray");
protected override object GetPropertyValue(ControllerContext controllerContext, ModelBindingContext bindingContext, System.ComponentModel.PropertyDescriptor propertyDescriptor, IModelBinder propertyBinder)
{
if (propertyDescriptor.PropertyType.GetInterface(typeof(IEnumerable).Name) != null)
{
var actualValue = bindingContext.ValueProvider.GetValue(propertyDescriptor.Name);
if (actualValue != null && !String.IsNullOrWhiteSpace(actualValue.AttemptedValue) && actualValue.AttemptedValue.Contains(","))
{
var valueType = propertyDescriptor.PropertyType.GetElementType() ?? propertyDescriptor.PropertyType.GetGenericArguments().FirstOrDefault();
if (valueType != null && valueType.GetInterface(typeof(IConvertible).Name) != null)
{
var list = (IList)Activator.CreateInstance(typeof(List<>).MakeGenericType(valueType));
foreach (var splitValue in actualValue.AttemptedValue.Split(new[] { ',' }))
{
list.Add(Convert.ChangeType(splitValue, valueType));
}
if (propertyDescriptor.PropertyType.IsArray)
{
return ToArrayMethod.MakeGenericMethod(valueType).Invoke(this, new[] { list });
}
else
{
return list;
}
}
}
}
return base.GetPropertyValue(controllerContext, bindingContext, propertyDescriptor, propertyBinder);
}
}