在我的 iOS 应用程序中,如何使用 Alamofire 在 HTTP 主体中发送带有简单字符串的 POST 请求?
作为默认的 Alamofire 需要一个请求的参数:
Alamofire.request(.POST, "http://mywebsite.example/post-request", parameters: ["foo": "bar"])
这些参数包含键-值对。
我的意思是这样的:
Alamofire.request(.POST, "http://mywebsite.example/post-request", body: "myBodyString")