如何使用swagger-express-mw上传文件并expression?

我想使用快速框架上传多部分表单数据。 我正在使用swagger-node和express来处理我的API。 现在,我已经写了如下的YAGL文件来上传文件:

/picture/students: # binds a127 app logic to a route x-swagger-router-controller: bus_api post: description: Upload a picture # used as the method name of the controller operationId: uploadStudentPic consumes: - multipart/form-data parameters: - in: formData name: imageFile type: file description: The file to upload. required: true responses: "200": description: OK schema: # a pointer to a definition $ref: "#/definitions/SuccessResponseStr" 

但是现在我不知道如何使用它来上传图片。 是否有任何内置的工具来上传图片?