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

问题描述 投票:3回答:1

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

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

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

ios swift alamofire
1个回答
0
投票

您应该使用带有这样结构的常量文件

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

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

Alamofire.request(Api.BaseUrl + "/room/\(user)/\(password)", method: .patch)
© www.soinside.com 2019 - 2024. All rights reserved.