MVC中model binding的坑

2018-06-22 06:02:16来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

这两天发现一个model binding中的坑,就是action中的参数名不能和属性重复,否则绑定不了,参数始终是null,

举例说明: 

T_Account类定义如下

    public partial class T_Account
    {
        [Key]
        public int Id { get; set; }

        [Required]
        [StringLength(50)]
        public string Account { get; set; }

        [StringLength(50)]
        public string Name { get; set; }

        public bool IsDeleted { get; set; }
    }

在Edit视图提交时的处理方法定义

        [HttpPost]
        [ValidateAntiForgeryToken]
        public ActionResult Edit([Bind(Include = "Id,Account,IsDeleted,Name")] T_Account account)
        {
            if (ModelState.IsValid)
            {
                db.Entry(account).State = EntityState.Modified;
                db.SaveChanges();
                return RedirectToAction("Index");
            }
            return View(account);
        }

注意此时Include中有Account属性,参数名也叫account, account始终为null.

 

但如果把参数account改个名字,例如t_account,问题就解决了

        public ActionResult Edit([Bind(Include = "Id,Account,IsDeleted,Name")] T_Account t_account)
        {

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:MVC学习系列14--Bundling And Minification【捆绑和压缩】--翻译

下一篇:Web API与文件操作