NopCommerce架构分析之(五)Model绑定Action参数
程序员文章站
2023-12-19 21:27:58
asp.net mvc中action参数不只是一些基本类型,也支持实体参数。那么从客户端传来的数据如何映射或转换成实体对象呢?就是通过实体绑定类modelbinder。此系...
asp.net mvc中action参数不只是一些基本类型,也支持实体参数。那么从客户端传来的数据如何映射或转换成实体对象呢?就是通过实体绑定类modelbinder。此系列类在请求转化为后台controller的action方法前,捕获传递过来的数据,并对其进行解析和转换,最终为实体类对象。
在系统启动前,global.asax.cs中的方法application_start方法调用下面代码定义参数转换规则。
//model binders modelbinders.binders.add(typeof(basenopmodel), new nopmodelbinder());
nopmodelbinder继承defaultmodelbinder承担系统的实体绑定类,但好像只是留一个接口,并没有使用。主要是继承父类的方法,稍有改变的地方是:方法bindmodel添加了对nopmodel的绑定支持。
public override object bindmodel(controllercontext controllercontext, modelbindingcontext bindingcontext) { var model = base.bindmodel(controllercontext, bindingcontext); if (model is basenopmodel) ((basenopmodel) model).bindmodel(controllercontext, bindingcontext); return model; }
方法getmodelproperties添加了一个过滤方法,只是此方法尚未启用。
类basenopmodel是所有model的基类,支持对自定义属性的存储。并且有一个绑定到解析器的方法bindmodel,只是尚未发现有子类实现此方法。