Alamofire读取标题响应

时间:2017-02-09 10:07:59

标签: ios swift3

isNaN

我的问题是,我得到了回复,但我需要从标题中读取某个值。与X-Page-Max-Index类似,如何从标题中读取此值。

喜欢

response.headers()得到(" X页 - 最大指数&#34)。

2 个答案:

答案 0 :(得分:2)

您可以使用HTTPURLResponse的{​​{3}}属性。

print(response.response.allHeaderFields["X-Page-Max-Index"])

答案 1 :(得分:0)

它对我有用 response.response?.allHeaderFields["X-Page-Max-Index"] as! String?