Answers for "can we send image in json in angular"

0

can we send image in json in angular

public ResponseEntity<User> handleFileUpload(@RequestParam("user") User user, @RequestPart("file") MultipartFile file)
Posted by: Guest on March-16-2021
0

can we send image in json in angular

public ResponseEntity<User> handleFileUpload(@RequestPart("user") User user, @RequestPart("file") MultipartFile file)
Posted by: Guest on March-16-2021
0

can we send image in json in angular

curl -i -X POST -H "Content-Type: multipart/form-data" \
-F 'user={"name":"John","age":12};type=application/json' \
-F "[email protected]" http://localhost:8080/post
Posted by: Guest on March-16-2021

Code answers related to "can we send image in json in angular"

Code answers related to "Javascript"

Browse Popular Code Answers by Language