问题 在Jasmine测试中获取自定义指令控制器的范围


我在尝试着 访问范围 随附的控制器 **我的自定义角度指令** 什么时候 在茉莉花中测试

app.directive('MyDirective', function(){
return {
         template:...,
         scope:...,
         controller: function($scope){
                $scope.clickMe = function() {
                    ....
                  };
            $scope.message = "";
         }
 }

我想在茉莉花中编写一个测试来验证是否定义了clickMe方法。

 it('should have 3 methods', function() {
    expect(dscope).not.toBe(null);
    expect(scope).not.toBe(null);
    expect(angular.isFunction(dscope.clickMe)).toBe(true);
    expect(dscope.message).toBe(true); }

在beforeEach()中,我声明了范围和dscope变量如下:

beforeEach(inject(function(  $rootScope, $compile){
    scope = $rootScope.$new();      

    element = angular.element("<div my-directive></div>");

    //bind the empty scope into the directive
    $compile(element)(scope);

    //access to internal directive scope of our element
    dscope = element.scope();  }));

但是当我进行测试时,我得到“期望错误是真的。“* 并期望scope.message的undefined不为null


4279
2018-06-12 11:02


起源



答案:


如果您使用的是Angular 1.2+,则必须使用......

dscope = element.isolateScope();

代替...

dscope = element.scope();

访问孤立的范围。我无法判断你的范围是否被孤立,因为你在问题中省略了你的指令的范围声明,但我想这就是在这里发生的事情。

看到 这个 在Github上解释.scope()和.isolateScope()之间的区别


16
2018-06-16 16:34



非常感谢 !我对所有不起作用的例子感到生气! - achedeuzot
谢谢你的问题和答案:) - Siva Kumar


答案:


如果您使用的是Angular 1.2+,则必须使用......

dscope = element.isolateScope();

代替...

dscope = element.scope();

访问孤立的范围。我无法判断你的范围是否被孤立,因为你在问题中省略了你的指令的范围声明,但我想这就是在这里发生的事情。

看到 这个 在Github上解释.scope()和.isolateScope()之间的区别


16
2018-06-16 16:34



非常感谢 !我对所有不起作用的例子感到生气! - achedeuzot
谢谢你的问题和答案:) - Siva Kumar