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