重定向到Angularjs中的错误页面

前端之家收集整理的这篇文章主要介绍了重定向到Angularjs中的错误页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是AngularJs的新手.我有一个单一的页面应用程序,路由配置了控制器和视图.视图被加载到< ng-view>< / ng-view>内index.html页面的元素.在控制器内部,我正在进行http调用获取数据并将数据绑定到$scope.对于成功的情况,这样做很好,但如果有错误,如何插入另一个视图,而不是在角度路径中配置的默认视图.请告诉我.
当出现错误时,使用$location.url()重定向404.html
$http.get(url,[params])
    .success(function(data,status,headers,config){
        // bind your data to scope
    })
    .error(function(data,config) {
        $location.url('/404');
    });

然后配置您的$routeProvider

$routeProvider
    .when('/404',{
        templateUrl: '404.html',controller: 'Four04Controller'
    })
原文链接:https://www.f2er.com/angularjs/142722.html

猜你在找的Angularjs相关文章