angularjs提示:提示HTML模板没有更新(angularjs tooltip: toolti

2019-10-30 02:56发布

我用这个angularjs提示库 ,以显示工具提示。

这里是我的HTML:

<span tooltips tooltip-title="Recommenders" tooltip-show-trigger="click" tooltip-view="/static/templates/tooltips/recommenders.html" tooltip-view-ctrl="FeedCtrl"></span>

这里是我的提示部分:

<div ng-repeat="recommender in recommenders_list">
    {{recommender}}
</div>

我现在面临的问题是,当我在我的控制器更新“recommenders_list”阵列,同样没有反映在工具提示模板。 如何更新我的提示部分?

Answer 1:

mainFile

'use strict';

angular.module('yourAppName')
    .controller('ControllerName', ['$scope', function (scope) {

        // ...
        // here your list
        // ...
    }]);

directiveFile

angular.module('yourAppName')
    .directive('directiveName', function() {
        return {
            templateUrl : 'url/of/your/template.html'
        };
    });

HTMLFILE

<body ng-app="yourAppName">

    <div class="container-fluid" ng-controller="ControllerName">
        <div directive-name></div>
    </div>

    <!-- Angular file -->
    <script src="js/angular.min.js"></script>
    <!-- Angular mainFile -->
    <script src="url/of/your/mainFile.js"></script>

</body>

看看下面这个例子,是很基本的,但这种方式,我希望你能理解并找到可能是你的问题。



文章来源: angularjs tooltip: tooltip html template not updating