gpt4 book ai didi

c# - 为什么文件 IFormFile = null?

转载 作者:行者123 更新时间:2023-12-02 20:06:24 28 4
gpt4 key购买 nike

[Route("api/file")]
[Produces("application/json")]
[Consumes("application/json", "application/json-patch+json", "multipart/form-data")]
[ApiController]
public class FileController : ControllerBase
{
public FileController()
{
}

[HttpPost]
public async Task<IActionResult> PostProfilePicture([FromQuery]IFormFile file)
{
var stream = file.OpenReadStream();
var name = file.FileName;
return null;
}
}

postman

enter image description here

调试

enter image description here

最后 file = null如何解决这个问题?

最佳答案

您将其作为 x-www-form-urlencoded 发送。您必须将其作为 multipart/form-data 发送。文件上传只能在此模式下进行,因此 IFormFile 在所有其他模式下也将为 null

x-www-form-urlencoded 是默认模式,仅用于在请求正文中发送键/值编码对。

[FromQuery] 也不是必需的,因为您不能通过查询参数上传文件。

关于c# - 为什么文件 IFormFile = null?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54570077/

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