我正在使用 Angular 服务 $httpBackend 的装饰器来更改所有 http 调用的 url:
app.config(function($provide) {
$provide.decorator('$httpBackend', function($delegate) {
return function(method, url, post, callback, headers, timeout, withCredentials, responseType) {
url = changeUrl(url);
$delegate(method, url, post, callback, headers, timeout, withCredentials, responseType);
};
})
});
在一些 Jasmine 测试中,我需要模拟 $httpBackend 服务:
describe('...', function() {
beforeEach(module('...'));
beforeEach(inject(function($injector) {
$httpBackend = $injector.get('$httpBackend');
$httpBackend.when('GET', '...').respond(function(method, url) {
return ...
});
}));
}
现在我在执行这些测试时收到错误“$httpBackend.when 不是函数”。
知道如何解决这个问题吗?我更喜欢没有在我的应用程序配置中测试特定代码的解决方案。