Mal*_*iri 12 c# asp.net-core-webapi asp.net-core-2.0
我试图将文件从Postman发布到我创建的端点.但它给了我这个错误.我没有在邮递员中传递标题Content-Type
415不支持的媒体类型
[Consumes("multipart/form-data")]
[HttpPost]
public async Task<IActionResult> SendEmail([FromBody]Entity entity)
{
try
{
return OK();
}
catch (Exception e)
{
throw e;
}
}
Run Code Online (Sandbox Code Playgroud)
public class Entity
{
public List<IFormFile> Files { get; set; }
}
Run Code Online (Sandbox Code Playgroud)