由于我的api请求服务器中出现504错误,我遇到了麻烦。我正在使用此代码来获取api数据
CGFloat footerHeight = dummyFooterView.bounds.height;
self.tableView.contentOffset = CGPointMake(0, -footerHeight);
答案 0 :(得分:3)
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); //check if 504 return.
有时我会检查代码是否返回200作为正常响应。
答案 1 :(得分:0)
你可以这样做
$api_url="****";
$t = microtime( TRUE );
file_get_contents($api_url);
$t = microtime( TRUE ) - $t;
if($t<=5){
Execute curl here
}