ASP.NET Core MVC IFormFile 415不支持的媒体类型

时间:2018-05-20 08:11:25

标签: angular asp.net-core asp.net-core-mvc postman fiddler

我有这项服务:

[HttpPost]
public IActionResult ChangePicture (IFormFile file)
{
    // doing something
    return Ok();
}

我在Postman中测试它,它工作正常。 我在Fiddler测试它,我得到415。 我使用FormData在Angular中发布它,然后我得到415。

我尝试使用比较软件比较请求,我看到标题都是Content-Type: multipart/form-data; boundary=----blablabla

我在这一点上坚持可能出错的地方。猜测是Fiddler和FormData使用不同的序列化/编码来传输图像文件。但我不知道如何调试它。

0 个答案:

没有答案