使用ParamerterEncoding进行Alamofire迁移问题

时间:2017-08-02 01:25:36

标签: swift xcode swift3 alamofire

Alamofire有一些问题迁移到swift 3.我在使用此代码之前现在正在收到错误。请参阅以下代码:

        let URL = Foundation.URL(string: Router.baseURLString)
        let URLRequest = NSMutableURLRequest(url: URL!.appendingPathComponent(path))
        let encoding = Alamofire.ParameterEncoding.URL
        return encoding.encode(URLRequest, parameters: parameters).0

在'let encoding ='行上获取错误。

错误:

类型'ParameterEncoding'没有成员'URL'

1 个答案:

答案 0 :(得分:0)

试试这个

Alamofire.ParameterEncoding.encode(URLRequest, parameters: parameters).0