3

次のようなASP.NETMVCルートを設定したいと思います。

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にnull値のキーが既に含まれていることがわかります。おそらく、文字列からList<int>...thisへのキャストが試行されたためです。私が制御したいルーティングの一部です。

これは可能ですか?

4

2 に答える 2

8

良いバージョンは、独自のモデル バインダーを実装することです。ここでサンプルを見つけることができます

私はあなたにアイデアを与えようとします:

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(); 
} 
于 2011-12-06T21:10:02.067 に答える
3

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);
    }
}
于 2011-12-07T22:01:39.050 に答える