在我的bootstrap ui工具提示中调用一个方法

时间:2015-07-02 16:10:36

标签: angularjs twitter-bootstrap angular-ui-bootstrap

为了简单起见,我试图配置我的引导工具提示来调用api来提取正确的工具提示文本值

<i class="fa fa-certificate" 
    tooltip="{{loadTooltipText(paramVal)}}" 
    tooltip-placement="top" 
    tooltip-trigger="mouseenter"></i>

但似乎在没有实际的mouseenter事件的情况下调用该方法,它会在加载范围时触发该方法

$scope.loadTooltipText = function (paramVal) {
            data.getTooltipText(paramVal)
                .$promise
                .then(function (resp) {
                    if (resp.Success) {
                        return resp.TooltipText;
                    }
                    else {
                        return "There was a problem loading this";
                    }
                }, function (resp) {
                })
        };

0 个答案:

没有答案