我无法将文件(mp4)上传到我的服务器。我控制服务器并使用npm
库解析请求。现在,当我使用Postman
并选择测试mp4上传到我的服务器时,我成功收到它。然而,当从Alamofire
使用此功能时,我什么也得不到。
Alamofire.upload(fileURL, to: "http://localhost/video").responseJSON { response in
debugPrint(response) }
我在回复中发回了一些JSON,并在我的应用中成功接收了它。任何一方都没有错误。我错过了什么?
答案 0 :(得分:1)
使用MultiFormData上传图片
Alamofire.upload(
multipartFormData: { multipartFormData in
multipartFormData.append(fileUrl, withName: "fileName")
},
to: "http://localhost/video").responseJSON {
response in
debugPrint(response)
})