我正在编写一个jQuery代码,该代码需要在加载模板视图和修改DOM之后立即执行。

为此,我在控制器中使用了$viewContentLoaded事件。

$scope.$on('$viewContentLoaded', function(){
    //Here your view content is fully loaded !!
    page_content_onresize();
});


但是很遗憾,$viewContentLoaded不适用于我。

因为我的代码需要在加载视图中的模板后修改DOM之后立即应用,但是当我不使用该ng-view并且不使用任何模板直接加载html时,一切工作正常。

我尝试了所有操作,但没有使用$viewContentLoaded正确运行脚本。

因此,我将代码更改为类似的代码,然后一切正常。

$scope.$on('$viewContentLoaded', function(){
    //Here your view content is fully loaded !!
    setTimeout(page_content_onresize, 0);

});


我不明白为什么它在第一种情况下不起作用?

function page_content_onresize(){
    $(".page-content,.content-frame-body,.content-frame-right,.content-frame-left").css("width","").css("height","");

    var content_minus = 0;
    content_minus = ($(".page-container-boxed").length > 0) ? 40 : content_minus;
    content_minus += ($(".page-navigation-top-fixed").length > 0) ? 50 : 0;

    var content = $(".page-content");
    var sidebar = $(".page-sidebar");

    if(content.height() < $(document).height() - content_minus){
        content.height($(document).height() - content_minus);
    }

    if(sidebar.height() > content.height()){
        content.height(sidebar.height());
    }

    if($(window).width() > 1024){

        if($(".page-sidebar").hasClass("scroll")){
            if($("body").hasClass("page-container-boxed")){
                var doc_height = $(document).height() - 40;
            }else{
                var doc_height = $(window).height();
            }
            $(".page-sidebar").height(doc_height);

        }

        if($(".content-frame-body").height() < $(document).height()-162){
            $(".content-frame-body,.content-frame-right,.content-frame-left").height($(document).height()-162);
        }else{
            $(".content-frame-right,.content-frame-left").height($(".content-frame-body").height());
        }

        $(".content-frame-left").show();
        $(".content-frame-right").show();
    }else{
        $(".content-frame-body").height($(".content-frame").height()-80);

        if($(".page-sidebar").hasClass("scroll"))
               $(".page-sidebar").css("height","");
    }

    if($(window).width() < 1200){
        if($("body").hasClass("page-container-boxed")){
            $("body").removeClass("page-container-boxed").data("boxed","1");
        }
    }else{
        if($("body").data("boxed") === "1"){
            $("body").addClass("page-container-boxed").data("boxed","");
        }
    }
}

最佳答案

加载模板后,将触发$viewContentLoaded事件。
它不能保证已加载的模板在页面上呈现。

angular.js的代码片段

var clone = $transclude(newScope, function(clone) {
  $animate.enter(clone, null, currentElement || $element).then(function onNgViewEnter() {
    if (angular.isDefined(autoScrollExp)
      && (!autoScrollExp || scope.$eval(autoScrollExp))) {
      $anchorScroll();
    }
  });
  cleanupLastView();
});

currentElement = clone;
currentScope = current.scope = newScope;
currentScope.$emit('$viewContentLoaded');
currentScope.$eval(onloadExp);


ngAnimate.js的代码片段

enter: function(element, parentElement, afterElement, options) {
  options = parseAnimateOptions(options);
  element = angular.element(element);
  parentElement = prepareElement(parentElement);
  afterElement = prepareElement(afterElement);

  classBasedAnimationsBlocked(element, true);
  $delegate.enter(element, parentElement, afterElement);
  return runAnimationPostDigest(function(done) {
    return performAnimation('enter', 'ng-enter', stripCommentsFromElement(element), parentElement, afterElement, noop, options, done);
  });
}


$ animate.enter不同步。

因此,先发出$viewContentLoaded,然后将内容呈现到页面上。

10-05 20:16