如何在config stateprovider上获取离子rootScope?

时间:2016-09-13 12:15:02

标签: javascript android html angularjs ionic-framework

如何在下面的行中检索$rootScope值?

.config(function($stateProvider, $urlRouterProvider) {  
  $stateProvider
  // Here is where I need to get the value of $rootScope.
}

1 个答案:

答案 0 :(得分:0)

这就是我在配置模块

中使用离子弹出服务的方法

在配置函数中注入$ ionicPopupProvider

之后做这样的事情

 $ionicPopupProvider.$get().alert({
                  title: 'Alert',
                  template: "Something went wrong on Server Side"
                });

同样可以用于rootscope,注入rootScopeProvider并使用它