获取FormCollection输出自定义模型绑定器的controllerContext

时间:2009-10-02 17:45:32

标签: asp.net-mvc modelbinders

我有一个很好的函数,它接受了我的FormCollection(从控制器提供)。现在我想做一个模型绑定,让我的模型绑定器调用该函数,它需要FormCollection。出于某种原因,我可以找到它。我以为会是这样的 controllerContext.HttpContext.Request.Form

3 个答案:

答案 0 :(得分:15)

试试这个:

var formCollection = new FormCollection(controllerContext.HttpContext.Request.Form)

FormCollection是我们添加到ASP.NET MVC的类型,它有自己的ModelBinder。您可以查看FormCollectionBinderAttribute的代码以了解我的意思。

答案 1 :(得分:1)

直接访问表单集似乎不赞成。以下是MVC4项目中的一个示例,其中我有一个自定义Razor EditorTemplate,它在单独的表单字段中捕获日期和时间。自定义绑定器检索各个字段的值,并将它们组合成DateTime

public class DateTimeModelBinder : DefaultModelBinder
{
    private static readonly string DATE = "Date";
    private static readonly string TIME = "Time";
    private static readonly string DATE_TIME_FORMAT = "dd/MM/yyyy HH:mm";
    public DateTimeModelBinder() { }

    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        if (bindingContext == null) throw new ArgumentNullException("bindingContext");

        var provider = new FormValueProvider(controllerContext);
        var keys = provider.GetKeysFromPrefix(bindingContext.ModelName);
        if (keys.Count == 2 && keys.ContainsKey(DATE) && keys.ContainsKey(TIME))
        {
            var date = provider.GetValue(string.Format("{0}.{1}", bindingContext.ModelName, DATE)).AttemptedValue;
            var time = provider.GetValue(string.Format("{0}.{1}", bindingContext.ModelName, TIME)).AttemptedValue;
            if (!string.IsNullOrWhiteSpace(date) && !string.IsNullOrWhiteSpace(time))
            {
                DateTime dt;
                if (DateTime.TryParseExact(string.Format(System.Globalization.CultureInfo.CurrentCulture, "{0} {1}", date, time),
                                            DATE_TIME_FORMAT,
                                            System.Globalization.CultureInfo.CurrentCulture,
                                            System.Globalization.DateTimeStyles.AssumeLocal,
                                            out dt))
                    return dt;
            }
        }

        return base.BindModel(controllerContext, bindingContext);
    }
}

答案 2 :(得分:0)

使用bindingContext.ValueProvider(和bindingContext.ValueProvider.TryGetValue等)直接获取值。