溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用Swagger怎么實現(xiàn)文件上傳功能

發(fā)布時間:2020-12-31 15:11:47 來源:億速云 閱讀:477 作者:Leah 欄目:開發(fā)技術

利用Swagger怎么實現(xiàn)文件上傳功能?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

經常使用swagger,可以通過設置[ProducesResponseType]標記接口的返回信息;swagger也能通過接口的參數(shù)列表,自動獲得發(fā)送的數(shù)據(jù)結構信息。

不過有一個例外,就是上傳文件的時候,設置了[Consumes]的內容為multi-part/form-data,但是swagger并不能正常感知是上傳文件的。代碼是這個樣子的:

[Consumes("multipart/form-data")]
[ODataRoute]
[HttpPost]
public async Task<ActionResult> Post(IFormCollection collection)
{
 var file = collection.Files[0];
 if(file != null)
 {
 var filename = DateTime.Now.ToString("yyyyMMddHHmmss") + file.FileName;
 var path = Path.Combine(_webHostEnvironment.WebRootPath, "Files", filename);
 using FileStream fileStream = new FileStream(path, FileMode.Create);
 await file.CopyToAsync(fileStream);
 var uri = "Files/" + filename;
 var fileEntity = new Models.File { Url = uri, LastModified = DateTime.Now };
 _homeworkDataContext.Files.Add(fileEntity);
 await _homeworkDataContext.SaveChangesAsync();
 return Created(WebUtility.UrlEncode(uri), fileEntity);
 }
 return BadRequest();
}

實際上,swagger一直提示,上傳的內容是一個array類型,當然API是沒有問題的,可以通過POSTMAN進行發(fā)送,不過不能在網頁上直接操作,總覺得心里有點不太舒服。

利用Swagger怎么實現(xiàn)文件上傳功能

方法

搜索了一下辦法,比較靠譜的,就是通過增加一個IOperationFilter來實現(xiàn)目的。

// CODE FROM https://www.talkingdotnet.com/how-to-upload-file-via-swagger-in-asp-net-core-web-api/
public class FileUploadOperation : IOperationFilter
{
 public void Apply(Operation operation, OperationFilterContext context)
 {
 if (operation.OperationId.ToLower() == "apivaluesuploadpost")
 {
  operation.Parameters.Clear();
  operation.Parameters.Add(new NonBodyParameter
  {
  Name = "uploadedFile",
  In = "formData",
  Description = "Upload File",
  Required = true,
  Type = "file"
  });
  operation.Consumes.Add("multipart/form-data");
 }
 }
}

然后,在services.ConfigureSwaggerGen()參數(shù)中,添加

options.OperationFilter<FileUploadOperation>();

方法的原理是通過重寫操作某個特定API的的過濾器,來實現(xiàn)對返回內容的操作。

此方法適用于OAS2,實質上是實現(xiàn)了這里的規(guī)范要求。

我已經用上.NET 5.0了,自帶了swagger都支持的是OpenAPI 3,這個方法不好用了。不過思想應該相同,首先看看OpenAPI 3的規(guī)范,文件上傳需要定義為:

requestBody:
 content:
 multipart/form-data:
 schema:
 type: object
 properties:
  fileName:
  type: string
  format: binary

這個套路和OpenAPI 2完全不一樣,需要重新設置requestBody才行。我們按照要求改造代碼。

public class FileUploadOperation : IOperationFilter
{
 public void Apply(OpenApiOperation operation, OperationFilterContext context)
 {
 //判斷上傳文件的類型,只有上傳的類型是IFormCollection的才進行重寫。
 if (context.ApiDescription.ActionDescriptor.Parameters.Any(w => w.ParameterType == typeof(IFormCollection)))
 {
  Dictionary<string, OpenApiSchema> schema = new Dictionary<string, OpenApiSchema>();
  schema["fileName"] = new OpenApiSchema { Description = "Select file", Type = "string", Format = "binary" };
  Dictionary<string, OpenApiMediaType> content = new Dictionary<string, OpenApiMediaType>();
  content["multipart/form-data"] = new OpenApiMediaType { Schema = new OpenApiSchema { Type = "object", Properties = schema } };
  operation.RequestBody = new OpenApiRequestBody() { Content = content };
 }
 }
}

看完上述內容,你們掌握利用Swagger怎么實現(xiàn)文件上傳功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

AI