我想将图像上传到 web api 并一次性提交数据,但它返回 415 代码错误
我尝试将其更改为 fromForm 但无法正常工作
[HttpPost("Vendor")]
public IActionResult NewAdds([FromBody] Ads add, IFormFile file)
{
//copy file first then insert
if (file.Length > 0)
{}
}
它返回 415。这里是邮递员的结果
{
"type": "https://tools.ietf.org/html/rfc7231#section-6.5.13",
"title": "Unsupported Media Type",
"status": 415,
"traceId": "80000041-0003-ff00-b63f-84710c7967bb"
}