次のようなリクエスト DTO があるとします。
public class MyRequest
{
public DateTime? SomeDateTime { get; set; }
}
クライアントでは、jQuery を使用して投稿したいと考えています。
$.ajax({
type: 'POST',
url : '/myrequest',
data: { someDateTime: new Date() },
dataType: 'json',
success: function (data) { console.log(data.success); }
});
これが機能しないのはなぜですか?MyRequest.SomeDateTime
は決して移入されません。の代わりに何を渡す必要がありnew Date()
ますか?