UIWebView request.response = 无问题
UIWebView request.response = nil Issue
我在 webViewDidFinishLoad
中遇到了来自 UIWebView
的问题,我正在
if let urlResponse = NSURLCache.sharedURLCache().cachedResponseForRequest(webView.request!)?.response {
if (urlResponse as! NSHTTPURLResponse).statusCode == 200 {
}
}
as nil
所以我无法在显示正文时检查状态代码。请问哪里有问题?我可以从服务器端做些什么吗?
编辑:从其他请求我可以看到响应。
所以,我认为那是因为您正在检查 NSURLCache
以获得您的请求响应。但有时,您的页面可以显示,但不能缓存。实际上,服务器可以这样响应:
Cache-Control: no-cache, no-store, must-revalidate
Pragma: no-cache
Expires: 0
上面写着:"You should absolutely not cache my response"。作为一个好公民,iOS 不要 :)。因此,我们必须使用不同的方式来取回服务器响应。我认为最好的解决方案是使用 NSURLSession
发出您的请求,下载内容并将其转发到您的网络视图。发出请求后,您将能够访问答案是完成处理程序。以下是您可以执行的操作的示例:
func loadURL(url: NSURL!) {
let config = NSURLSessionConfiguration.defaultSessionConfiguration()
let session = NSURLSession(configuration: config)
let muableRequest = NSMutableURLRequest(URL: url)
muableRequest.setValue("WhateverYouWant", forHTTPHeaderField: "x-YourHeaderField")
let task = session.dataTaskWithRequest(muableRequest) { (data, response, error) in
guard error == nil else {
print("We have an error :( \(error)")
// Here, you have to handle the error ...
return
}
if let response = response {
var mimeType = ""
if response.MIMEType != nil {
mimeType = response.MIMEType!
}
var encoding = ""
if response.textEncodingName != nil {
encoding = response.textEncodingName!
}
if let httpResponse = response as? NSHTTPURLResponse {
print("HTTP Status code is \(httpResponse.statusCode)")
}
self.webView.loadData(data!, MIMEType: mimeType, textEncodingName: encoding, baseURL: url)
}
}
task.resume()
}
你这样调用这个方法:
loadURL(NSURL(string: "https://apple.com")!)
在你之前这样做的地方:
webView.loadRequest(NSURLRequest(URL: NSURL(string: "https://apple.com")!))
我在 webViewDidFinishLoad
中遇到了来自 UIWebView
的问题,我正在
if let urlResponse = NSURLCache.sharedURLCache().cachedResponseForRequest(webView.request!)?.response {
if (urlResponse as! NSHTTPURLResponse).statusCode == 200 {
}
}
as nil
所以我无法在显示正文时检查状态代码。请问哪里有问题?我可以从服务器端做些什么吗?
编辑:从其他请求我可以看到响应。
所以,我认为那是因为您正在检查 NSURLCache
以获得您的请求响应。但有时,您的页面可以显示,但不能缓存。实际上,服务器可以这样响应:
Cache-Control: no-cache, no-store, must-revalidate
Pragma: no-cache
Expires: 0
上面写着:"You should absolutely not cache my response"。作为一个好公民,iOS 不要 :)。因此,我们必须使用不同的方式来取回服务器响应。我认为最好的解决方案是使用 NSURLSession
发出您的请求,下载内容并将其转发到您的网络视图。发出请求后,您将能够访问答案是完成处理程序。以下是您可以执行的操作的示例:
func loadURL(url: NSURL!) {
let config = NSURLSessionConfiguration.defaultSessionConfiguration()
let session = NSURLSession(configuration: config)
let muableRequest = NSMutableURLRequest(URL: url)
muableRequest.setValue("WhateverYouWant", forHTTPHeaderField: "x-YourHeaderField")
let task = session.dataTaskWithRequest(muableRequest) { (data, response, error) in
guard error == nil else {
print("We have an error :( \(error)")
// Here, you have to handle the error ...
return
}
if let response = response {
var mimeType = ""
if response.MIMEType != nil {
mimeType = response.MIMEType!
}
var encoding = ""
if response.textEncodingName != nil {
encoding = response.textEncodingName!
}
if let httpResponse = response as? NSHTTPURLResponse {
print("HTTP Status code is \(httpResponse.statusCode)")
}
self.webView.loadData(data!, MIMEType: mimeType, textEncodingName: encoding, baseURL: url)
}
}
task.resume()
}
你这样调用这个方法:
loadURL(NSURL(string: "https://apple.com")!)
在你之前这样做的地方:
webView.loadRequest(NSURLRequest(URL: NSURL(string: "https://apple.com")!))