これは私を完全に困惑させました...
私は非常に単純な入力モデルを持っており、次のような3つの文字列プロパティがあります。
public class SystemInputModel
{
public string Name;
public string Performance;
public string Description;
}
私のコントローラーでは:
public ViewResult AddSystem()
{
return View(new SystemInputModel());
}
[HttpPost]
public ActionResult AddSystem(SystemInputModel model)
{
if (ModelState.IsValid)
{
var system = new OasisSystem
{
Name = model.Name,
Description = model.Description,
Performance = model.Performance
};
return Json(repository.AddSystem(system));
}
return Json(new {success = false, message = "Internal error"});
}
景色:
<h2>Add System</h2>
@using (Html.BeginForm())
{
@Html.ValidationSummary(true)
<label>Name</label>
@Html.EditorFor(m => m.Name)
<br />
<label>Description</label>
@Html.EditorFor(m => m.Description)
<br />
<label>Performance</label>
@Html.EditorFor(m => m.Performance)
<br />
<input type="submit" />
}
フォームフィールドに入力して送信を押します。Fiddlerの生の投稿を見てきました:
POST http://localhost.:4772/System/AddSystem HTTP/1.1
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/x-ms-application, application/x-ms-xbap, application/vnd.ms-xpsdocument, application/xaml+xml, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*
Referer: http://localhost.:4772/System/AddSystem
Accept-Language: en-us
Content-Type: application/x-www-form-urlencoded
UA-CPU: x86
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; MS-RTC LM 8)
Connection: Keep-Alive
Content-Length: 42
Host: localhost.:4772
Pragma: no-cache
Cookie: ASP.NET_SessionId=5i4jtrrhjuujvtbpsju4bu3f
Name=foo&Description=bar&Performance=yes
ただし、HttpPostコントローラーメソッドに渡されるモデルには、3つのプロパティすべてにnull値があります。モデルオブジェクトからFormCollectionに変更すると、渡された3つのプロパティを確認できます。
投稿されたフィールドがモデルオブジェクトにマップされないのはなぜですか?