mvc 個別字段無法賦值的問題
阿新 • • 發佈:2018-06-13
pre mdict ict spa ret gic 不理解 string IE
原因是:字段名為: 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 個別字段無法賦值的問題