到目前为止,我创建了这样的url请求:
Alamofire.request("https://httpbin.org/room/\(user)/\(password)", method: .patch)
每次创建请求时,我都要将基本网址放入每个请求中。我可以以某种方式将基本网址声明为全局常量吗? (此处https://httpbin.org/
)
答案 0 :(得分:0)
你应该使用一个带有这样结构的常量文件
// Constants.swift
struct Api {
static let BaseUrl = "https://httpbin.org"
}
然后,在您的控制器上,您只需使用此值
Alamofire.request(Api.BaseUrl + "/room/\(user)/\(password)", method: .patch)