如何在角度js应用程序启动时从服务获取$ http请求?

时间:2014-10-29 21:04:38

标签: angularjs

我有会话服务,我想检查身份验证令牌是否有效。 从会话服务我将做$ http请求。

如何在应用启动之前在角度js中执行$ http请求? 基本上,在任何路线可用之前?

如果有办法执行此操作,会话服务将拥有有关令牌的有效服务器数据。

有什么想法吗?q

1 个答案:

答案 0 :(得分:0)

好的方法是在模块的运行块中执行它

  angular.module('yourApp').run(['$rootScope', '$http', function ($rootScope, $http) {
  // $http request here
 }]);

正如@methews建议的那样,看看这些文档

Angular Docs On this