代码之家  ›  专栏  ›  技术社区  ›  Nathan Taylor

ASP.NET MVC2-解析模型绑定器中的参数属性

  •  3
  • Nathan Taylor  · 技术社区  · 15 年前

    给出一个动作,比如:

    public ActionResult DoStuff([CustomAttribute("foo")]string value) {
      // ...
    }
    

    有什么方法可以解决 value CustomAttribute 在ModelBinder中?我在查看mvc的源代码,很可能是我做错了,但是当我试图复制它们的代码来检索复杂模型的bindAttribute时,调用getAttributes()并没有返回我要查找的属性。

    DefaultModelBinder

    GetTypeDescriptor(controllerContext, bindingContext).GetAttributes();
    
    1 回复  |  直到 14 年前
        1
  •  0
  •   Community CDub    7 年前

    我说话了 Brad Wilson 在twitter上,他指出这可以通过aspnet4 futures程序集中的modelmataprovider实现,方法是在所需类型上实现新的imetadataaware接口。此外,他还表示,mvc 3将同时为.net3.5和.net 4.0引入此功能。

    推荐文章