gpt4 book ai didi

c# - 415 不支持的媒体类型 asp.net core

转载 作者:可可西里 更新时间:2023-11-01 09:02:40 24 4
gpt4 key购买 nike

详情

我正在尝试将文件从 Postman 发送到我创建的端点。但它给了我这个错误。我没有在 postman 中传递 header Content-Type

415 Unsupported Media Type

应用程序接口(interface)

[Consumes("multipart/form-data")]
[HttpPost]
public async Task<IActionResult> SendEmail([FromBody]Entity entity)
{
try
{

return OK();
}
catch (Exception e)
{
throw e;
}
}

public class Entity 
{
public List<IFormFile> Files { get; set; }
}

最佳答案

如果您要发布表单数据,请尝试使用 [FromForm] 而不是 [FromBody] 作为方法参数。

关于c# - 415 不支持的媒体类型 asp.net core,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49228906/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com