如何为Alamofire请求全局设置基本URL?

时间:2016-12-13 11:08:31

标签: ios swift alamofire

到目前为止,我创建了这样的url请求:

Alamofire.request("https://httpbin.org/room/\(user)/\(password)", method: .patch)

每次创建请求时,我都要将基本网址放入每个请求中。我可以以某种方式将基本网址声明为全局常量吗? (此处https://httpbin.org/

1 个答案:

答案 0 :(得分:0)

你应该使用一个带有这样结构的常量文件

// Constants.swift
struct Api {
    static let BaseUrl = "https://httpbin.org"
}

然后,在您的控制器上,您只需使用此值

Alamofire.request(Api.BaseUrl + "/room/\(user)/\(password)", method: .patch)