autofac不在viewmodel中绑定数据

时间:2014-08-02 04:33:24

标签: c# asp.net-mvc interface inversion-of-control autofac

我有一个接口,它有一个属性是另一个接口的列表和一个实现该接口的类,我为Autofac注册了它,但是我的问题是Autofac没有将数据绑定到我的类,我在下面写了我的代码:

我的界面:

public interface IDetail
{
    int Id { get; set; }

    string Name { get; set; }
}

public interface IMaster
{
    int Id { get; set; }

    DateTime Description { get; set; }

    List<IDetail> Details { get; set; }
}

我的课程:

public class Detail : IDetail
{
    public int Id { get; set; }

    public string Name { get; set; }
}

public class Master : IMaster
{
    public int Id { get; set; }

    public DateTime Description { get; set; }

    public List<IDetail> Details { get; set; }
}

我的控制器:

public class HomeController : Controller
    {
        IMaster _t;

        [HttpPost]
        public ActionResult Create(IMaster t)
        {
            _t = t;
        }


    }

我的Autofac注册:

    public class DependencyConfigure
        {
//Initializing
            public static void Initialize()
            {
                RegisterServices();
            }

//Registering
            private static void RegisterServices()
            {

                ContainerBuilder builder = new ContainerBuilder();

                builder.RegisterAssemblyTypes(
                    typeof(MvcApplication).Assembly
                    ).PropertiesAutowired();            

                builder.RegisterType<ExtensibleActionInvoker>()
                .As<IActionInvoker>()
                .WithParameter("injectActionMethodParameters", true);
                        builder.RegisterControllers(Assembly.GetExecutingAssembly())
                            .InjectActionInvoker();

                builder.RegisterType(typeof(Master)).As(typeof(IMaster));

                var container = builder.Build();
                DependencyResolver.SetResolver(new AutofacDependencyResolver(container));            
            }

        }

,视图在这里:

@model WebApplication1.Models.Master

@using (Html.BeginForm()) 
{
    @Html.AntiForgeryToken()

        <div class="form-group">
            @Html.LabelFor(model => model.Description, new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.EditorFor(model => model.Description)
                @Html.ValidationMessageFor(model => model.Description)
            </div>
        </div>

        <div>
            @Html.Label("Details.Name", new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.Editor("Details[0].Name")                
            </div>
        </div>

        <div class="form-group">
            <div class="col-md-offset-2 col-md-10">
                <input type="submit" value="Create" class="btn btn-default" />
            </div>
        </div>
}

<div>
    @Html.ActionLink("Back to List", "Index")
</div>

换句话说,当我提交时,数据不会绑定到Master.Details ...

2 个答案:

答案 0 :(得分:1)

你在这里犯了一些错误。

  1. Autofac与模型绑定无关。 Autofac用于将依赖项注入到控制器的构造函数中; ASP.NET MVC模型绑定器将HTTP请求绑定到操作参数。它们是完全不同的问题。 摆脱}依赖注入
  2. MVC无法将表单帖子绑定到接口,因为它不知道要实例化的具体类型。忘记IMaster接口并使用具体的视图模型类型。
  3. 表单帖子绑定到操作参数,而不是构造函数参数。您应该有一个接受IMaster对象的操作方法。
  4. 假设这是您的索引操作,您应该在Master内有一个类似于此的操作方法:

    HomeController

    您可能需要进行其他更改才能到达目的地,但这应该会让您走上正轨(现在您的代码看起来非常困惑)。

答案 1 :(得分:1)

正确答案就在这里,因为这些原因,您需要在将数据绑定到viewmodel之前将自定义绑定器写入mvc,创建viewmodel实例,然后将数据绑定到viewmodel。你可以在这里看到一个活页夹样本(由亲爱的友好高级开发人员@Saeed Hamed编写)

public class InterfaceModelBinderProvider : IModelBinderProvider
{
    public IModelBinder GetBinder(Type modelType)
    {
        if (modelType.IsInterface)
        {
            return new InterfaceModelBinder();
        }
        return null;
    }
}
public class InterfaceModelBinder : DefaultModelBinder
{
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var item = DependencyResolver.Current.GetService(bindingContext.ModelType);

        bindingContext.ModelMetadata = new ModelMetadata(new DataAnnotationsModelMetadataProvider(),
            bindingContext.ModelMetadata.ContainerType, () => item, item.GetType(), bindingContext.ModelName);

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