Error Domain=NSURLErrorDomain Code=-1003 "A server with the specified hostname could not be found...

// 找不到指定域名的主机, 通常为域名解析错误, 改为ip访问

当iPhone将wifi的DNS设置为114.114.114.114时, 每过1~2小时,在请求服务器时就会出现以上错误。

客户端请求后端接口数据返回遇到-1003错误时,改用ip再访问一下服务器。

如:

http://localhost:8080/user/editorPortrait 改 http://服务器地址:8080/user/editorPortrait 

及测试成功

你可能感兴趣的:(Error Domain=NSURLErrorDomain Code=-1003 "A server with the specified hostname could not be found...)