<input type="text" class="form-control" id="teamField"/>
<input type="button" value="Добавить" class="btn btn-default" onclick="addTeam()"/>
function addTeam() {
var teamName = $("teamField").val();
$.ajax({
type: "POST",
url: 'AddTeam',
contentType: "application/json;",
data:
{
team: "TEST" ,
},
success: function () {
alert("URA");
},
error: function (error) {
alert(error);
}
});
};
[HttpPost]
public IActionResult AddTeam(string team)
{
teamRepository.Add(new Team { IsDelete = false, Name = team });
teamRepository.SaveChanges();
return Json(new { Result = "Success" });
}
Контроллер всегда получает Null, не понимаю в чем может быть причина..