jQuery の ajax() 関数を使用して、オブジェクトの配列を MVC コントローラー メソッドに渡そうとしています。PassThing() C# コントローラー メソッドに入ると、引数 "things" が null です。引数に List の型を使用してこれを試しましたが、それも機能しません。私は何を間違っていますか?
<script type="text/javascript">
$(document).ready(function () {
var things = [
{ id: 1, color: 'yellow' },
{ id: 2, color: 'blue' },
{ id: 3, color: 'red' }
];
$.ajax({
contentType: 'application/json; charset=utf-8',
dataType: 'json',
type: 'POST',
url: '/Xhr/ThingController/PassThing',
data: JSON.stringify(things)
});
});
</script>
public class ThingController : Controller
{
public void PassThing(Thing[] things)
{
// do stuff with things here...
}
public class Thing
{
public int id { get; set; }
public string color { get; set; }
}
}