Свойства модели всегда равны нулю при выполнении вызова jquery / ajax в ядре .net.Любая идея, в чем проблема здесь
var fileType = {
fileTypeDescription: fileTypeDescription,
isActive: isActive,
sortOrder: sortOrder,
CreatedDate: null,
CreatedBy: null,
ModifiedDate: null,
ModifiedBy: null
};
$.ajax({
url: url,
data: { a: fileType },
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
alert('Success');
},
error: function (data, status, jqXHR) {
}
});
Модель:
public class MdtFebFileType
{
public int FileTypeId { get; set; }
public string FileTypeDescription { get; set; }
public bool IsActive { get; set; }
public DateTime? CreatedDate { get; set; }
public string CreatedBy { get; set; }
public DateTime? ModifiedDate { get; set; }
public string ModifiedBy { get; set; }
public int? SortOrder { get; set; }
}
Метод:
[HttpPost]
public Response AddFileType(MdtFebFileType fileType)
{}
Для части данных в вызове ajax, я имеюпопробовал следующее, но ни один из них не сработал.
JSON.stringify({ model: fileType })
JSON.stringify(fileType)
JSON.stringify({ 'model': fileType })