gpt4 book ai didi

ios - 即使响应数据发生更改,调用 api 也会给出相同的响应

转载 作者:行者123 更新时间:2023-11-29 06:02:27 26 4
gpt4 key购买 nike

我是 iOS 新手,想要调用 API 进行登录。我正在使用 Alamofire 进行 HTTP 请求。我收到来自服务器的响应,但我猜它正在缓存中保存响应。因此,如果我使用不同的数据调用 api,则会再次打印相同的响应。还有一个问题是我想保存 session 以供以后 api 调用。如何保存 session 数据并在 header 中使用它以供以后的 api 调用?

这是我的登录 API 调用

let params = ["identity": txtId.text!, "pass": txtPassword.text!]

AF.request(LOGIN_URL, method: .post, parameters: params as Parameters).responseJSON { response in

print("response = \(response.result.value)")

}

最佳答案

删除缓存的一种简单方法是在网络调用之前调用此代码:

URLCache.shared.removeAllCachedResponses()

或者您也可以删除单个请求的缓存:

let urlRequest = URLRequest(url: URL(string: "https://...")!)
URLCache.shared.removeCachedResponse(for: urlRequest)

然后,进行网络调用:

let params = ["identity": txtId.text!, "pass": txtPassword.text!]

AF.request(LOGIN_URL, method: .post, parameters: params as Parameters).responseJSON { response in
print("response = \(response.result.value)")
}

关于ios - 即使响应数据发生更改,调用 api 也会给出相同的响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54490853/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com