Как передать список объектов в метод с помощью ajax
var dataToSend = { list: [{ fieldname: 'ABC' }, { fieldname: 'DEF' }] }; $.ajax({ url: '/Home/Test', type: 'POST', dataType: "json", data: dataToSend, success: function (response) { $("#dvtest").html(response); } });
[HttpPost] public void Test(List<Summary> list) { } [Serializable] public class Summary { public string fieldname { get; set; } public string summarytype { get; set; } public string caption { get; set; } public int isDeleted { get; set; } }
невозможно передать данные
Что я уже пробовал:
contentType: 'application/json',
традиционный:истинный,