Post json object to ASP MVC doesn't work properly
问题 I'm trying to post a custom Json object to ASP.NET MVC controller, but doesn't work properly. My JS Code is: var myData = { "Message": "Another message", "Value": 4, "FirstItem": { "ItemName": "Este es el primer Item" }, "SecondItem": { "ItemName": "Este es el segundo Item" } }; $('.clickeable').click(function () { $.ajax({ type: 'POST', dataType: 'json', data: myData, url: '@Url.Action("PostSomething")', success: function () { console.info('Success'); }, error: function () { console.info(