PromiseKit 6错误无法转换错误

时间:2018-12-14 13:58:08

标签: swift alamofire promisekit

首先,我知道v6中的实现已更改,并且我按预期使用了seal对象,但我遇到的问题是,即使按照示例对字母进行操作,它仍然会给我旧的Cannot convert value of type '(_) -> CustomerLoginResponse' to expected argument type '(_) -> _'错误。

这是我的返回诺言的函数:

 static func makeCustomerLoginRequest(userName: String, password: String) -> Promise<CustomerLoginResponse>
{
    return Promise
        { seal in
            Alamofire.request(ApiProvider.buildUrl(), method: .post, parameters: ApiObjectFactory.Requests.createCustomerLoginRequest(userName: userName, password: password).toXML(), encoding: XMLEncoding.default, headers: Constants.Header)
                     .responseXMLObject { (resp: DataResponse<CustomerLoginResponse>) in
                if let error =  resp.error
                {
                    seal.reject(error)
                }
                guard let Xml = resp.result.value else {
                    return seal.reject(ApiError.credentialError)
                }
                seal.fulfill(Xml)
            }
    }
}

这是消耗它的函数:

static func Login(userName: String, password: String) {
    ApiClient.makeCustomerLoginRequest(userName: userName, password: password).then { data -> CustomerLoginResponse  in

    }
}

1 个答案:

答案 0 :(得分:1)

如果要链接多个promises,则可能需要提供更多信息。在v6中,如果您不想继续承诺链,则需要使用.done。如果您只有一个promise对此请求,那么下面是正确的实现。

static func Login(userName: String, password: String) {
    ApiClient.makeCustomerLoginRequest(userName: userName, password: password)
         .done { loginResponse in
              print(loginResponse)
         }.catch { error in
              print(error)
         }
}

请记住,如果您使用的是promise,则必须返回.then,直到使用.done打破链条。如果要链接多个promises,则语法应如下所示,

ApiClient.makeCustomerLoginRequest(userName: userName, password: password)
       .then { loginResponse -> Promise<CustomerLoginResponse> in
             return .value(loginResponse)
        }.then { loginResponse -> Promise<Bool> in
             print(loginResponse)
             return .value(true)
        }.then { bool -> Promise<String> in
             print(bool)
             return .value("hello world")
        }.then { string -> Promise<Int> in
             print(string)
             return .value(100)
        }.done { int in
             print(int)
        }.catch { error in
             print(error)
        }