将多个参数传递给 API
Passing multiple parameters to API
我有一个用 java 编写的程序,它从 classpath
读取 2 json
个文件。我被告知为 RestAPI
.
创建相同的程序
每当我创建 postAPI
时,我都会从正文中传递数据。如何在 postAPI
.
中发送多个文件的数据
有可能吗?
如果您需要从后端接收作为单独文件的数据,您可以实施支持分段上传的API。
例如:https://www.baeldung.com/spring-rest-template-multipart-upload
我有一个用 java 编写的程序,它从 classpath
读取 2 json
个文件。我被告知为 RestAPI
.
每当我创建 postAPI
时,我都会从正文中传递数据。如何在 postAPI
.
有可能吗?
如果您需要从后端接收作为单独文件的数据,您可以实施支持分段上传的API。
例如:https://www.baeldung.com/spring-rest-template-multipart-upload