假设我有一个如下所示的请求 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()
?