首先,我知道那是一个头衔。

Ive最近接管了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中是否有任何行为可以解释这一点。

最佳答案

我猜想在更新elemnumPotentialMergesVisible不会“足够快地”添加到dom中。

请尝试以下方法:

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);
        }
    };
}]);

这样,将在处理$ scope变量值更改后执行悬停设置方法。

09-11 19:51