在 C# 中使用 WebClient 通过多部分表单数据上传文件



有人可以告诉我如何在多部分表单数据中上传文件,以便我可以添加后参数和文件作为内容.

如果你在有效负载中同时需要files和对象,你可以使用这样的multipart形式:

形式

<form id="createForm" method="post" enctype="multipart/form-data" action="http://localhost:5000/api/send">
<input type="text" name="Field1"  id="field1" />
<input type="text" name="Field2"  id="field2" />
<input type="file" id="bulk" name="Bulk" required />
</form>

波科

class MyClass
{
  public string Field1{get;set;}
  public string Field2{get;set;}
}

控制器
在控制器中,您可以使用Request.Form.Files访问文件,这为您提供了包含所有上传文件的集合。然后,您可以使用StreamReader读取文件,如下所示:

[HttpPost]
[Route("api/send")]
[DisableRequestSizeLimit] 
public async Task<long> CreateAsync(MyClass obj) {
{
  var file=this.Request.Form.Files[0];  //there's only one in our form
  using(StreamReader reader=new StreamReader(file))
  {
    var data=await reader.ReadToEndAsync();
    Console.WriteLine("File Content:"+data);
    Console.WriteLine("{ Field1 :"+obj.Field1.ToString()+",Field2:"+obj.Field2.ToString()+"}");
  }
}

谨慎
处理multipart时要小心,因为您还需要指定段的maximum大小。
这是在Startup中完成的:

public void ConfigureServices(IServiceCollection services) {
    services.Configure<FormOptions>(options => {
                    options.ValueCountLimit = 200;
                    options.ValueLengthLimit = int.MaxValue;
                    options.MultipartBodyLengthLimit = long.MaxValue;
                });
 }

或者就像我直接在 Controller -s 方法中所做的那样,通过使用 [DisableRequestSizeLimit] 属性装饰它。

相关内容

  • 没有找到相关文章

最新更新