_servicename_中的下划线在AngularJS测试中意味着什么?

时间:2013-03-10 02:00:06

标签: angularjs unit-testing jasmine angularjs-service

在下面的示例测试中,原始提供程序名称是APIEndpointProvider,但是对于注入和服务实例化,约定似乎必须注入包含它的下划线。那是为什么?

'use strict';

describe('Provider: APIEndpointProvider', function () {

  beforeEach(module('myApp.providers'));

  var APIEndpointProvider;
  beforeEach(inject(function(_APIEndpointProvider_) {
    APIEndpointProvider = _APIEndpointProvider_;
  }));

  it('should do something', function () {
    expect(!!APIEndpointProvider).toBe(true);
  });

});

我错过了一个更好的解释是什么?

1 个答案:

答案 0 :(得分:107)

下划线是我们可以用来以不同名称注入服务的便利技巧,以便我们可以在本地分配与服务同名的本地变量。

也就是说,如果我们不能这样做,我们必须在本地使用其他名称:

beforeEach(inject(function(APIEndpointProvider) {
  AEP = APIEndpointProvider; // <-- we can't use the same name!
}));

it('should do something', function () {
  expect(!!AEP).toBe(true);  // <-- this is more confusing
});

测试中使用的$injector能够删除下划线,为我们提供所需的模块。除了让我们重复使用相同的名称之外,它不会

Read more in the Angular docs