mvc 个别字段无法赋值的问题

Posted 星星c#

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mvc 个别字段无法赋值的问题相关的知识,希望对你有一定的参考价值。

原因是:字段名为: TYPE   ????  

 

不理解:TYPE 不能赋值是因为关键字?

 

下面的方法里有背景色为红色的那个参数有问题,影响到前台 :

@html.HiddenFor(model => model.ID)

这句话的赋值,所以传值的时候参数名不能起名为 id。

public ActionResult ClueParameterEdit(string type, string id, string refreshFunction)
        {
            Cust_clue_dict model = null;
            if (!string.IsNullOrEmpty(id))
            {
                Guid guidId = new Guid(id);
                model = new ClueBaseLogic().GetCommomDict(c => c.ID == guidId).First();
            }
            else
            {
                model = new Cust_clue_dict();
                model.DICT_TYPE = type;
                model.ID = System.Guid.NewGuid();
            }
            ViewBag.RefreshFunction = refreshFunction;
            return View(model);
        }

 

以上是关于mvc 个别字段无法赋值的问题的主要内容,如果未能解决你的问题,请参考以下文章

ASP.net MVC 代码片段问题中的 Jqgrid 实现

MVC4 JQuery validate 无法验证非必填字段

无法通过 Prisma 在 GraphQL-yoga 中使用片段

MVC问题汇总

无法为单例中的 BOOL 字段赋值

Spring MVC 代码注入验证器