6

首先,我知道这是一个糟糕的标题。

我最近接管了angular-tooltip并尝试为我的主要工作项目构建自定义工具提示。

在我的项目中,我有一个 ng-repeat 指令,它简单地说

<div class="row-submenu-white" ng-repeat="merge in potentialMerges | limitTo: numPotentialMergesVisible" company-profile-tooltip="merge.preview"></div>

使用库的说明,我定义了一个自定义工具提示指令:

myApp.directive('companyProfileTooltip', ['$tooltip', ($tooltip) => {
    return {
        restrict: 'EA',
        scope: { profile: '@companyProfileTooltip' },
        link: (scope: ng.IScope, elem) => {
            var tooltip = $tooltip({
                target: elem,
                scope: scope,
                templateUrl: "/App/Private/Content/Common/company.profile.html",
                tether: {
                    attachment: 'middle right',
                    targetAttachment: 'middle left',
                    offset: '0 10px'
                }
            });

            $(elem).hover(() => {
               tooltip.open();
           }, () => {
                tooltip.close();
           });
        }
    };
}]);

Company.profile.html 很简单:

<div>Hello, world!</div>

现在,如果您注意到,在 ng-repeat 我有一个limitTo过滤器。对于其中的每一个(最初是 3 个)合并都可以完美地工作,其中<div>Hello, world!</div>正确添加了工具提示。

然后我触发limitTo限制到更大的数字。初始 3 之后的每个重复元素都会给我以下错误:

TypeError: context is undefined


if ( ( context.ownerDocument || context ) !== document ) {

错误出现在 jquery-2.1.1.js 中,调试似乎无可救药。

我可以告诉你的是,为该行调用的函数是

Sizzle.contains = function( context, elem ) {
    // Set document vars if needed
    if ( ( context.ownerDocument || context ) !== document ) {
        setDocument( context );
    }
    return contains( context, elem );
};

有一个调用堆栈

Sizzle</Sizzle.contains(context=Document 046f7364-fa8d-4e95-e131-fa26ae78d108, elem=div)jquery-2.1.1.js (line 1409)
.buildFragment(elems=["<div>\r\n Hello, world!\r\n</div>"], context=Document 046f7364-fa8d-4e95-e131-fa26ae78d108, scripts=false, selection=undefined)jquery-2.1.1.js (line 5123)
jQuery.parseHTML(data="<div>\r\n Hello, world!\r\n</div>", context=Document 046f7364-fa8d-4e95-e131-fa26ae78d108, keepScripts=true)jquery-2.1.1.js (line 8810)
jQuery.fn.init(selector="<div>\r\n Hello, world!\r\n</div>\r\n", context=undefined, rootjQuery=undefined)jquery-....2.1.js (line 221)
jQuery(selector="<div>\r\n Hello, world!\r\n</div>\r\n", context=undefined)jquery-2.1.1.js (line 76)
compile($compileNodes="<div>\r\n Hello, world!\r\n</div>\r\n", transcludeFn=undefined, maxPriority=undefined, ignoreDirective=undefined, previousCompileContext=undefined)angular.js (line 6812)
m()angular....min.js (line 2)
.link/<()app.js (line 262)
jQuery.event.special[orig].handle(event=Object { originalEvent=Event mouseover, type="mouseenter", timeStamp=0, more...})jquery-2.1.1.js (line 4739)
jQuery.event.dispatch(event=Object { originalEvent=Event mouseover, type="mouseenter", timeStamp=0, more...})jquery-2.1.1.js (line 4408)
jQuery.event.add/elemData.handle(e=mouseover clientX=980, clientY=403)jquery-2.1.1.js (line 4095)

App.js 第 262 行是上面提供的指令的链接函数。

对于我的一生,我无法弄清楚是什么导致在初始元素limitTo增加之后的重复元素中上下文未定义。我可以验证的是,删除limitTo过滤器会导致每个元素的行为在整个过程中都很好。limitTo我还可以验证的是,如果我将初始值设置为 0 并在之后增加它,那么最初的 3 个元素不起作用。

查看源代码limitTo让我相信每次您限制更改的数量时都会构建一个新数组。据我了解,这应该会导致 Angular 删除所有 DOM 元素然后更改它们,但我无法判断该更改是否会以任何方式影响这一点。

我知道没有太多工作要做,但是我不知道如何调试它并且可以感谢任何帮助,或者如果我不知道 ng-repeat 中有任何行为可以解释这一点。

4

2 回答 2

0

I would guess that elem isn't added to the dom "fast enough" when you update numPotentialMergesVisible.

Try the following:

myApp.directive('companyProfileTooltip', ['$tooltip', ($tooltip) => {
    return {
        restrict: 'EA',
        scope: { profile: '@companyProfileTooltip' },
        link: (scope: ng.IScope, elem) => {
            var tooltip = $tooltip({
                target: elem,
                scope: scope,
                templateUrl: "/App/Private/Content/Common/company.profile.html",
                tether: {
                    attachment: 'middle right',
                    targetAttachment: 'middle left',
                    offset: '0 10px'
                }
            });
             $timeout(()=> {
                $(elem).hover(() => {
                   tooltip.open();
               }, () => {
                    tooltip.close();
               });
           },1);
        }
    };
}]);

This way the hover setup method will be executed after the $scope variable value change has been handled.

于 2014-11-13T08:16:10.837 回答
0

显然,问题是错误的数据被缓存在 angular-tooltip 库中。正在解析模板的整个请求,而不仅仅是它的内容。这个问题与 ngRepeat 无关;limitTo 之前的前 n 项将触发 GET 请求,因为模板数据尚未填充 templateCache,但稍后它们将尝试访问整个请求的内容。

于 2014-11-14T00:41:14.880 回答