当前位置:  开发笔记 > 前端 > 正文

.Net Core WebAPI,无法使用POSTMAN发布数据,错误 - 415不支持的MediaType

如何解决《.NetCoreWebAPI,无法使用POSTMAN发布数据,错误-415不支持的MediaType》经验,为你挑选了1个好方法。

我正在使用Postman测试我的第一个.net Core 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 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);
}

Gebb.. 30

你没有发送Content-Type标题.JSON (application/json)在第一个屏幕截图中选择鼠标指针附近的下拉列表: 像这样



1> Gebb..:

你没有发送Content-Type标题.JSON (application/json)在第一个屏幕截图中选择鼠标指针附近的下拉列表: 像这样

推荐阅读
乐韵答题
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有