如何从邮递员上传图像

时间:2019-02-13 17:04:25

标签: spring-boot

我找到了有关如何在Spring Boot应用程序中上传图像的教程。 我看了本教程https://spring.io/guides/gs/uploading-files/

这是我的邮递员:

image

1 个答案:

答案 0 :(得分:2)

尝试一下:

上传图片时,我们需要将图片编码为base64,然后将编码后的字符串作为json字符串传递。而且,在后端,我们需要对字符串进行解码并制作图像。

安装 base-64 NPM软件包

npm install base-64

例如:

"upload_image": { "name": "72397.jpg", "content_type":"image/jpg", "file":"base64string"}

请参考下图: image1 希望对您有所帮助