zoukankan      html  css  js  c++  java
  • MVC扩展ModelBinder,通过继承DefaultModelBinder把表单数据封装成类作为action参数

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

    1


    action方法参数类型:

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

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

    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);
                }
                
            }
        }
    }

    全局注册:

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

    HomeController:

    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();
            }
        }
    }

    Home/Index.cshtml:

    @{
        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>
    }

    提交后结果:

    2

  • 相关阅读:
    redis 安装报错
    eclipse 启动后,闪退
    java 读取文件路径空格和中文的处理
    阿里云里面的Linux 系统挂载数据盘
    云服务器 ECS Linux 系统盘数据转移方法
    Redis批量删除Key
    快速搭建 SpringCloud 微服务开发环境的脚手架
    用这个库 3 分钟实现让你满意的表格功能:Bootstrap-Table
    Python 命令行之旅:深入 click 之选项篇
    Python 命令行之旅:深入 click 之参数篇
  • 原文地址:https://www.cnblogs.com/darrenji/p/3756201.html
Copyright © 2011-2022 走看看