我发现了一些类似下面的问题,但是我发现在以前的 MVC 版本中,MVC 4 中有什么新的东西吗?
更新:用一些代码来帮助未来的访问者
public class QueryStringDictionaryBinder : IModelBinder
{
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
var querystrings = controllerContext.HttpContext.Request.QueryString;
return querystrings.Cast<string>()
.Select(s => new { Key = s, Value = querystrings[s] })
.ToDictionary(p => p.Key, p => p.Value);
}
}