1
我想用Alamofire發郵件給Mailgun。我正在使用下面的代碼發送請求,但我從.response
開始在線獲得錯誤Cannot call value of non-function type 'HTTPURLResponse?'
。無法調用非函數類型'HTTPURLResponse?'的值Alamofire 4,Swift 3
我該如何解決這個問題?我試圖複製在這裏找到的代碼,但更新爲Swift 3.我試圖用Mailgun和Alamofire發送電子郵件。
https://gist.github.com/makzan/11e8605f85352abf8dc1/
謝謝!
Alamofire.request(url, method: .post, parameters: parameters)
.authenticate(user: "api", password: key)
.response{ (request, response, data, error) in
println(request)
println(response)
println(error)
}
}
這是它,謝謝!不知道我是如何錯過它的 – winston