Angularjs函数含义

时间:2016-01-17 18:17:31

标签: javascript angularjs

我是编程的初学者。我想了解这个角度函数的开始是逐行的吗?

  function UserProfileService($http, ApiConfigService) { 
    var profileUrl = ApiConfigService.getEndpoints().user_service + 
'/v2/users/profile';
    var oauthUrl = ApiConfigService.getEndpoints().oauth_service +
'/v2/oauth'; 

谢谢!

1 个答案:

答案 0 :(得分:0)

它正在创建两个不同的字符串变量。基本URL来自ApiConfigService,其余部分连接到baseurl。

我们可以假设以下内容: ApiConfigService.getEndpoints().user_service = 'http://example.com/user-service' ApiConfigService.getEndpoints().oauth_service = 'http://example.com/oauth-service'

然后这里的变量将获得以下值: profileUrl = 'http://example.com/user-service/v2/users/profile' oauthUrl = 'http://example.com/oauth-service/v2/oauth'