$compile不更新动态生成的HTML运行时

$compile not updating dynamically generated html runtime

本文关键字:HTML 运行时 动态 compile 更新      更新时间:2023-09-26

https://jsfiddle.net/vikramkute/eq3zpmp9/5/

我是新来的角。我有一个对象,需要追加在html运行时。我使用的是angular 1.2.25

期望输出

1 Quest
2 Quest
3 Quest

,但我得到最后一个值重复三次。根据我的试验和错误,我觉得问题是与$compile。我尝试了不同论坛上提供的不同解决方案,但没有任何效果。任何帮助,非常感谢。谢谢。

In指令(在链接函数内)

            scope.obj =
            [
                {
                    "questionText": "1 Quest"
                },
                {
                    "questionText": "2 Quest"
                },
                {
                    "questionText": "3 Quest"
                }
            ]
            scope.addData = function() {
                for (var i = 0; i < scope.obj.length; i++) {
                    addSlide(scope.obj[i]);
                }
            }
           addSlide = function (obj) {
               scope.singleObj = obj;
               el = $('<div ng-bind="singleObj.questionText"></div>');
               scope.owl.append(el);
               $compile(el)(scope);
           };
输出:

3 Quest
3 Quest
3 Quest

完整指令:

angular.module('journeycarousel', [])
    .directive('journeyCarousel', function ($compile) {
        return {
            restrict: 'E',
            templateUrl: '../components/journeyCarousel/journeyCarousel.html',
            transclude: true,
            link: function (scope, element) {
                scope.obj =
                    [
                        {
                            "questionText": "1 Quest"
                        },
                        {
                            "questionText": "2 Quest"
                        },
                        {
                            "questionText": "3 Quest"
                        }
                    ]
                scope.addData = function() {
                    for (var i = 0; i < scope.obj.length; i++) {
                        addSlide(scope.obj[i]);
                    }
                }
                addSlide = function (obj) {
                    scope.singleObj = obj;
                    el = $('<div ng-bind="singleObj.questionText"></div>');
                    scope.owl.append(el);
                    $compile(el)(scope);
                };
            }
        }
    });

以上代码为简化版。这是实际代码:

    scope.singleObj = obj;
    el = $('<div class="questionContainer" <div ng-repeat="obj in singleObj"> ng-click="onSlideClick($event,singleObj)"> <div class="item"> <div class="questionSection" ng-bind="singleObj.questionText"></div> <div class="answerswerSection" ng-bind="singleObj.questionAnswer + singleObj.questionUnitOfMeasure"></div> </div> </div>');
   $('.owl-carousel').owlCarousel('add', el).owlCarousel('update');
   $compile(el)(scope);

我相信你输出的原因是

3 Quest
3 Quest
3 Quest

因为在您的例子中,只有在for循环执行了3次之后,digest循环才会启动。因此,在第三次迭代结束时

scope.singleObj 

总是

{
     "questionText": "3 Quest"
}

因此,所有编译的元素将始终指向相同的scope.singleObj

要去掉它,你可以执行

$scope.singleObj = [];
var addSlide = function(obj, i) {
    $scope.singleObj.push(obj);
    var ele = '<div ng-bind='"singleObj[' + i + '].questionText"></div>'
    el = $(ele);
    $("#container").append(el);
    $compile(el)($scope);
};
$scope.addData = function() {
    for (var i = 0; i < $scope.newCarouselSlideData.length; i++) {
        addSlide($scope.newCarouselSlideData[i], i);
    }
}

使用下面的结构,可能你搞不懂面向对象的概念:

addSlide = function (obj) {
        scope.singleObj = angular.copy(obj);
        el = $('<div ng-bind="singleObj.questionText"></div>');
        scope.owl.append(el);
        $compile(el)(scope);
};