作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 IFormfile 和其他属性模型数据在 asp.net core web api 中使用 swagger 发布文件,但我有任何方法可以同时执行这两项操作(上传文件和其他模型属性)。
请建议我一些好方法来做到这一点。
最佳答案
您可以创建一个具有字符串和 IFormFile 属性的模型并使用 [FromForm] 属性:
public class UploadModel{
public string Var1 { get; set; }
public IFormFile File { get; set; }
}
[HttpPost("/upload")]
public async Task Upload([FromForm] UploadModel model)
{
if (model.File == null) throw new Exception("File is null");
if (model.File.Length == 0) throw new Exception("File is empty");
model.Var1 += "hello world";
using (Stream stream = file.OpenReadStream())
{
using (var binaryReader = new BinaryReader(stream))
{
// Save the file here.
}
}
}
关于asp.net-web-api - 如何在asp.net core webapi中上传带有其他模型属性的Iformfile?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44260353/
我是一名优秀的程序员,十分优秀!