我想传递一些http请求,而不在单元测试中模拟它们,但是当我尝试调用passThrough()方法时,会抛出缺少方法的错误:



有人知道我该如何解决吗?

有我的代码:

'use strict';

describe('Controller: MainCtrl', function () {

    // load the controller's module
    beforeEach(module('w00App'));

    var scope, MainCtrl, $httpBackend;

    // Initialize the controller and a mock scope
    beforeEach(inject(function(_$httpBackend_, $rootScope, $controller) {
        $httpBackend = _$httpBackend_;
        $httpBackend.expectGET('http://api.some.com/testdata.json').passThrough();


        scope = $rootScope.$new();
        MainCtrl = $controller('MainCtrl', {
            $scope: scope
        });
    }));
});

最佳答案

如果要在开发过程中模拟后端,只需将angular-mocks安装在主html文件中,并将其作为依赖项添加到应用程序(angular.module('myApp', ['ngMockE2E']))中,然后模拟所需的请求。

例如;

angular.module('myApp')
  .controller('MainCtrl', function ($scope, $httpBackend, $http) {
    $httpBackend.whenGET('test').respond(200, {message: "Hello world"});
    $http.get('test').then(function(response){
      $scope.message = response.message //Hello world
    })
  });

但是请注意,添加ngMockE2E将需要您设置路由,以防您通过AngularJS路由进行设置。

例子;
angular.module('myApp', ['ngMockE2E'])
  .config(function ($routeProvider) {
    $routeProvider
      .when('/', {
        templateUrl: 'views/main.html',
        controller: 'MainCtrl'
      })
      .otherwise({
        redirectTo: '/'
      });
  })
  .run(function($httpBackend){
    $httpBackend.whenGET('views/main.html').passThrough();
  })

10-07 18:01