我與郵差對.NET核心的WebAPI,無法投遞與郵遞員,錯誤數據 - 415不支持的MediaType
未知的媒體類型的錯誤發生測試我的第一個.NET核心的WebAPI。
我錯過了什麼?
這是我發帖的對象
public class Country
{
[Key]
public int CountryID { get; set; }
public string CountryName { get; set; }
public string CountryShortName { get; set; }
public string Description { get; set; }
}
這是的WebAPI控制器
[HttpPost]
public async Task<IActionResult> PostCountry([FromBody] Country country)
{
if (!ModelState.IsValid)
{
return BadRequest(ModelState);
}
_context.Country.Add(country);
try
{
await _context.SaveChangesAsync();
}
catch (DbUpdateException)
{
if (CountryExists(country.CountryID))
{
return new StatusCodeResult(StatusCodes.Status409Conflict);
}
else
{
throw;
}
}
return CreatedAtAction("GetCountry", new { id = country.CountryID }, country);
}
你可以發佈什麼的「標題」選項卡?嘗試將Content-Type設置爲application/json – Dealdiane