1

好的,我遇到了 MVC 问题,我将控制器/视图附加到多个模型,这些模型包含字符串的受保护内部集。创建这些对象时,我需要能够设置字符串。话虽如此,我在理解 ModelBinding 来实现这一点时遇到了问题。我为 ModelBinder 附加了一个非常基本的设置,但不知道从哪里开始:

/// <summary>
/// Handles binding for the string variables
/// </summary>
public class ActionResultModelBinder : DefaultModelBinder, IModelBinder, ITypedModelBinder
{
    #region Properties

    /// <summary>
    /// Gets the type that this model binder's associated with
    /// </summary>
    /// <value>
    /// The type that this model binder's associated with.
    /// </value>
    public Type AssociatedType
    {
        get
        {
           return typeof(string);
        }
    }

    #endregion Properties

    #region Methods

    /// <summary>
    /// Binds the model by using the specified controller context and binding context.
    /// </summary>
    /// <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
    /// <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
    /// <returns>
    /// The bound object.
    /// </returns>
    /// <exception cref="T:System.ArgumentNullException">The <paramref name="bindingContext "/>parameter is null.</exception>
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var boundValue = base.BindModel(controllerContext, bindingContext);
        return bindingContext.ModelType == typeof(string);
    }

    /// <summary>
    /// Sets the specified property by using the specified controller context, binding context, and property value.
    /// </summary>
    /// <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
    /// <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
    /// <param name="propertyDescriptor">Describes a property to be set. The descriptor provides information such as the component type, property type, and property value. It also provides methods to get or set the property value.</param>
    /// <param name="value">The value to set for the property.</param>
    protected override void SetProperty(ControllerContext controllerContext, ModelBindingContext bindingContext, PropertyDescriptor propertyDescriptor, object value)
    {
        if (propertyDescriptor.PropertyType == typeof(string))
        {
            var stringVal = value as string;
        }

        base.SetProperty(controllerContext, bindingContext, propertyDescriptor, value);
    }

    #endregion Methods
}
4

1 回答 1

0

好的,让我解释一下。

你想绑定一个模型,所以首先你需要返回那个模型

public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)

这是一个自定义绑定器的示例,用于绑定名为 FacebookGroupViewModel 的模型:

public class FacebookGroupViewModelBinder : IModelBinder
    {
        public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
        {
            var model = new FacebookGroupViewModel();
            if(controllerContext.HttpContext.Request.Form.AllKeys.Contains("Friends"))
            {
                var friends = controllerContext.HttpContext.Request.Form["Friends"].Split(',');
                foreach (var friend in friends)
                {
                    model.FacebookFriendIds.Add(friend);
                }


 }
            return model;
        }
    }

在这里,您可以看到我从表单中获取了一个值:

controllerContext.HttpContext.Request.Form["Friends"]

但是您可以从 QueryString 或任何您想要的值中获取值,因为这里有 HttpContext。调试并查看您必须了解的所有属性。

最后,您需要通过这种方式设置此绑定器并将其与 global.asax 中的模型相关联。

ModelBinders.Binders.Add(typeof(FacebookGroupViewModel),new FacebookGroupViewModelBinder());

在应用程序启动方法中。

然后只需使用想象一下,我的控制器就是这样的。

[HttpPost]
public ActionResult PostFriend(FacebookGroupViewModel model)
{
//here your model is binded by your custom model ready to use.
}

工作完成,如果您对此有更多疑问,请告诉我。

您并不真正需要的更多信息

 protected override void SetProperty(ControllerContext controllerContext, ModelBindingContext bindingContext, PropertyDescriptor propertyDescriptor, object value)

允许您使用默认绑定器行为并覆盖某些属性,就像您只使用字符串一样,但为此您需要使用原始的 bindModel 方法。(例如 base.BindModel)

于 2012-05-29T22:39:19.410 回答