这是一个非常奇怪的行为,我设置了一些演示代码来试图弄清楚发生了什么。
基本上有两个动作和一个视图。第一个动作将一个空模型发送到视图,部分动作接收模型,更改其内容并将其发送回同一视图。
奇怪的是,在视图中,模型似乎包含更新的值,但是当我执行 Html.TextBoxFor(x => x.PropertyNameHere) 时,它会呈现一个包含未更改值的文本框。
大声笑...我提前为厕所幽默道歉,但它让这一天不会变得太无聊。;)
有谁知道这里发生了什么?为什么 TextBoxFor 的输出将旧值放在 value 属性中?
这是要复制的代码:
/Views/Demo/Index.aspx
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<TestWeb.DemoModel>" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Demo</title>
</head>
<body>
<div>
<%using (Html.BeginForm("DemoSubmit", "Admin", FormMethod.Post)) { %>
Foo: <%=Html.TextBoxFor(x => x.Foo)%> <%:Model.Foo %><br />
Bar: <%=Html.TextBoxFor(x => x.Bar) %> <%:Model.Bar %><br />
PoopSmith: <%=Html.TextBoxFor(x => x.PoopSmith) %> <%:Model.PoopSmith %><br />
<button type="submit">Submit</button>
<%} %>
</div>
</body>
</html>
演示模型.cs
namespace TestWeb {
public class DemoModel {
public string Foo { get; set; }
public int Bar { get; set; }
public string PoopSmith { get; set; }
}
}
演示控制器.cs
public class AdminController : Controller {
public ActionResult Index() {
var m = new DemoModel();
return View(m);
}
public ActionResult DemoSubmit(DemoModel demo) {
demo.Foo += "!!!";
demo.Bar++;
demo.PoopSmith += " has pooped.";
return View("Index", demo);
}
}
这是奇怪的输出: