会话配置:
func createAfSession() -> Alamofire.Session {
let sessionConfig = URLSessionConfiguration.af.default
sessionConfig.headers.add(name: "abc", value: "ABC")
return Alamofire.Session(configuration: sessionConfig)
}
创建会话:
var afSession = self.createAfSession()
在创建的会话中添加标题面临挑战:
afSession.sessionConfiguration.headers.add(name: "prq", value: "PQR") "Not added to headers"
我只想在会话中添加标题,而不是在 Alamofire 的请求中。