我有一個使用郵遞員傳遞URL參數的工作方案。現在,當我嘗試在Swift中通過Alamofire來完成時,它不起作用。如何添加Alamofire URL參數
您如何在Alamofire中創建此網址? http://localhost:8080/?test=123
_url = "http://localhost:8080/"
let parameters: Parameters = [
"test": "123"
]
Alamofire.request(_url,
method: .post,
parameters: parameters,
encoding: URLEncoding.default,
headers: headers
只是一句評論:OMG。你知道嗎?我一直在想這個問題,連續3個小時! :'(Pity。 – Glenn