将$ .getJSON行更改为:
$.ajax({ url: '@Url.Action("FilterReports")', data: JSON.stringify(viewModel), contentType: 'application/json', dataType: 'json', success: function (data) { alert(data); }});这样,MVC知道它正在接收JSON,并将其正确绑定到模型。

将$ .getJSON行更改为:
$.ajax({ url: '@Url.Action("FilterReports")', data: JSON.stringify(viewModel), contentType: 'application/json', dataType: 'json', success: function (data) { alert(data); }});这样,MVC知道它正在接收JSON,并将其正确绑定到模型。