我正在尝试将 afile
从 a发送postman
到 a web api
,方法 onweb api
需要一个包含文档类型、文件和文件夹名称的类型列表。发布在下面:
网页api方法:
[HttpPost("post-images")]
public async Task<IList<RepositoryItem>> PostAnImages (IList<PostRepoRequest> request)
{
// rest of the code
}
PostRepoRequest 类:
public class PostRepoRequest
{
public FileType FileType { get; set; }
public IFormFile File { get; set; }
public string Folder { get; set; }
}
可能会注意到我从未收到过文件,它总是 null,我也尝试将标题内容类型设置为,multipart/form-data
但效果不佳..
这里可能有什么诀窍?
谢谢
干杯