@ResponseBody
@RequestMapping(value="/mobileProfile.do", method = RequestMethod.POST)
public User edit(@RequestParam String password,@RequestParam String email,@RequestParam MultipartFile uploadedFile){
...
}
Currently, I am receiving parameters and files from the Spring server as above, is there a way to send them when using Alamofire?
swift
https://github.com/Alamofire/Alamofire#uploading-data-to-a-server
Please keep that in mind~
© 2024 OneMinuteCode. All rights reserved.