Can't send Post Data from Ajax to asp.net core web api?
问题 I need to send an ajax request to a post method defined in my asp.net core web api as below : // POST: api/Entreprise/Inscription [HttpPost("Inscription")] public IActionResult Post([FromBody] UserInfos value) { return Ok("value 1"); } and this is UserInfos model: public class UserInfos { public string firstname { get; set; } public string lastname { get; set; } public string email { get; set; } public string domainName { get; set; } public string phoneNumber {get;set;} public string address