码迷,mamicode.com
首页 > Web开发 > 详细

MVC扩展ModelBinder,通过继承DefaultModelBinder把表单数据封装成类作为action参数

时间:2014-06-07 02:59:40      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

把视图省、市、街道表单数据,封装成一个类,作为action参数。如下:

bubuko.com,布布扣


action方法参数类型:

namespace MvcApplication1.Models
{
    public class Customer
    {
        public string Address { get; set; }
    }
}

 

在自定义ModelBinder中,接收视图表单数据,封装成Customer类。

bubuko.com,布布扣
using System.Web;
using System.Web.Mvc;
using MvcApplication1.Models;

namespace MvcApplication1.Extension
{
    public class CustomerBinder : DefaultModelBinder
    {
        public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
        {
            if (bindingContext.ModelType == typeof (Customer))
            {
                HttpRequestBase request = controllerContext.HttpContext.Request;
                string province = request.Form.Get("Province");
                string city = request.Form.Get("City");
                string street = request.Form.Get("street");

                return new Customer() {Address = province+city+street};
            }
            else
            {
                return base.BindModel(controllerContext, bindingContext);
            }
            
        }
    }
}
bubuko.com,布布扣

 

全局注册:

ModelBinders.Binders.Add(typeof(Customer), new CustomerBinder());

 

HomeController:

bubuko.com,布布扣
using System.Web.Mvc;
using MvcApplication1.Extension;
using MvcApplication1.Models;

namespace MvcApplication1.Controllers
{
    public class HomeController : Controller
    {
        public ActionResult Index()
        {
            return View();
        }

        [HttpPost]
        public ActionResult Index([ModelBinder(typeof(CustomerBinder))]Customer customer)
        {
            if (ModelState.IsValid)
            {
                return Content(customer.Address);
            }
            return View();
        }
    }
}
bubuko.com,布布扣

 

Home/Index.cshtml:

bubuko.com,布布扣
@{
    ViewBag.Title = "Index";
    Layout = "~/Views/Shared/_Layout.cshtml";
}

<h2>Index</h2>
@using (Html.BeginForm())
{
    <table>
        <tr>
            <td>省</td>
            <td><input type="text" id="Province" name="Province"/></td>
        </tr>
        <tr>
            <td>市</td>
            <td><input type="text" id="City" name="City"/></td>
        </tr>
        <tr>
            <td>街道</td>
            <td><input type="text" id="Street" name="Street"/></td>
        </tr>
        <tr>
            <td colspan="2"><input type="submit" value="提交"/></td>
        </tr>
    </table>
}
bubuko.com,布布扣

 

提交后结果:

bubuko.com,布布扣

MVC扩展ModelBinder,通过继承DefaultModelBinder把表单数据封装成类作为action参数,布布扣,bubuko.com

MVC扩展ModelBinder,通过继承DefaultModelBinder把表单数据封装成类作为action参数

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/darrenji/p/3756201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!