Alamofire无法获得Swift 2的任何结果

时间:2015-09-05 02:40:07

标签: swift swift2 alamofire

我看了很多例子,主要来自网络上的@matt,但我无法做到这一点:

import Alamofire

extension Request {
    public func debugLog() -> Self {
        debugPrint(self)
        return self
    }
}

func login(userName: String, passWord: String) -> String {
    let manager = Manager.sharedInstance
    // Specifying the Headers we need
    manager.session.configuration.HTTPAdditionalHeaders = [
        "Content-Type": "application/json",
        "User-Agent": "test",
        "Cache-Control": "no-cache",
        "Authorization": "apikey"
    ]
    // When

    let params =
        ["userName" : userName,
        "passWord" : passWord]

    Alamofire.request(.POST, Constants.apiURL.url + "users/login", parameters: params)
        .validate()
        .debugLog()
        .responseJSON { responseRequest, responseResponse, responseResult in
            NSLog(String(responseRequest)) // never enter here
            NSLog(String(responseResponse))
            NSLog(String(responseResult))
    }

    return ""
}

它永远不会进入我的块.responseJSON。无论我用作参数,强制错误或从调试中获取完美的cURL命令,它都无法工作。

我的cURL很好,我可以在bash中正常执行它,我得到了一个很好的json结果。

curl -i \
    -X POST \
    -H "Content-Type: application/x-www-form-urlencoded" \
    -H "Cache-Control: no-cache" \
    -H "User-Agent: test" \
    -H "Authorization: apikey" \
    -H "Content-Type: application/json" \
    -d "passWord=123&userName=123" \
    "http://api.cc/users/login"

2 个答案:

答案 0 :(得分:0)

你在控制台中得到任何输出吗?

看起来您正在为您的应用启用针对您的应用启用App Transport Security的Xcode 7并发送HTTP请求。尝试通过将其添加到Info.plist来忽略ATS限制:

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
</dict>

此处有更多详情:How do I load an HTTP URL with App Transport Security enabled in iOS 9?

答案 1 :(得分:0)

我认为你的标题有问题。您应该更新您的请求。 您可以使用Alamofire 2Swift 2

在请求中添加标题

对于解决方案:go to the solution