angular.js - ng里面的$http.get().success()如何设置请求时间啊?我想做请求超时的效果!
为情所困
为情所困 2017-05-15 17:09:17
0
2
1143

以下是代码:

app.controller('salesCtrl',function($scope,$http,$rootScope){
            $scope.hasMore=true;
            $(".placeholderLoad").show();
            $http.get('data/sales.php',{timeout:8000}).success(function(data){
                //console.log(data);
                $scope.dishList=data;
                $(".placeholderLoad").hide();
            }).error(function(data,status){ //错误处理
                //console.log(data);
                //console.log(status);
                if(status=='timeout'){
                    alert("加载超时");//我这样设置的,但是没效果,请大家帮忙看看!``
                }
                
            });
})

问题:我用的是ng框架的ajax请求数据,然后想实现加载数据超过8秒后弹出报错 “加载超时”!

为情所困
为情所困

Antworte allen(2)
PHPzhong

把你的alert加一个timeout就可以啊
setTimeOut(()=>alert('Timeout'),8000)

你是不是还有什么想做的?

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage