gpt4 book ai didi

javascript - 使用 $compile 绑定(bind) HTML 内容时,AngularUI Bootstrap Carousel 无法正常工作

转载 作者:行者123 更新时间:2023-11-29 10:31:34 25 4
gpt4 key购买 nike

AngularUI Bootstrap version ^2.4.22

AngularJS version 1.6.4

Angular Sanitize version ^1.6.1

我在使用 AngularUI Bootstrap 的 Carousel 插件时遇到问题。在我的场景中,我需要读取一个包含一些模板路径的外部文件,并将它们中的每一个加载为幻灯片。请参见下面的示例:

index.html(调用指令的地方)

     <body id="body" ng-app="homePage">
<div id="miolo">
<div example-directive class="ng-hide"></div>
<div banner-rotativo></div>
<div id="menu-footer"></div>
</div>
</body>

banner-rotativo.directive.js - 基本上,在这个指令中,我有一个遵循 AngularUI Bootstrap's demo 结构的模板,我将响应数据绑定(bind)到 $scope.slides 数组。当我将 $compile(objResponseInner)($scope) 结果插入 htmlContent 属性时,轮播行为正常,但它呈现 [[object HTMLDivElement]] 和类似的东西那作为一个项目。

enter image description here

angular.module('homePage')
.directive('bannerRotativo', ['$compile', '$http', 'moduleUrl', '$templateRequest', function ($compile, $http, moduleUrl, $templateRequest) {
return {
template: '<div style="height: 305px" ng-controller="bannerHomeController" class="" >\
<div uib-carousel active="active" interval="myInterval" no-wrap="noWrapSlides">\
<div uib-slide ng-repeat="slide in slides track by slide.id" index="slide.id">\
<div ng-bind-html="slide.htmlContent">\
</div>\
</div>\
</div>\
</div>',

link: function (scope, element, attributes, controller) {

//Carousel
scope.myInterval = 5000;
scope.noWrapSlides = false;
scope.active = 0;
scope.slides = [];
var intCurrentIndex = 0;

$http({
method: 'GET',
url: moduleUrl.getUrl('homepage', '../config/banner-rotativo.conf')
}).then(function success(objResponse, status, headers, config) {
var objData = objResponse.data;
if (objData.slides) {
angular.forEach(objData.slides, function (objItem, strObjectName) {
var strTemplatePath = moduleUrl.getUrl('homepage', '..' + objItem.caminho);
if (strTemplatePath) {
$templateRequest(strTemplatePath).then(function success(objResponseInner) {
var objContent = $compile(objResponseInner)(scope);
scope.slides.push({
htmlContent: objContent,
id: intCurrentIndex++
});
});
}
});
}
});
}
}


}]);

banner-rotativo.conf

{
"slides": {
"banner-ex-one": {
"titulo": "exone",
"caminho-imagem": "assets/one.jpg",
"caminho": "/html/components/banner-rotativo/banner-ex-one.view.html"
},
"banner-ex-two" : {
"titulo": "extwo",
"caminho-imagem": "assets/two.jpg",
"caminho": "/html/components/banner-rotativo/banner-ex-two.view.html"
},
"banner-rav" : {
"title": "rav",
"caminho-imagem": "assets/rav.jpg",
"caminho": "/html/components/banner-rotativo/banner-rav.view.html"
},
"banner-aviso" : {
"title": "Quadro de comunicações 1",
"caminho-imagem": "assets/aviso.jpg",
"caminho": "/html/components/banner-rotativo/banner-aviso.view.html"
},
"banner-custom" : {
"title": "Quadro de comunicações 2",
"caminho-imagem": "assets/custom.jpg",
"caminho": "/html/components/banner-rotativo/banner-custom.view.html"
}
}
}

加载的模板示例:

<div id="frameOne" ng-controller="slideOneController" class="varejo-clique-promocao-one" title="Conteúdo Varejo - Quadro One">
<div class="item">
<div id="dados">

<!-- Imagem banner one -->
<img id="one" ng-click="enviarFormOne()" class="one" alt="" ng-if="1==1" ng-src="caminhoImagem"
/>
<!-- End imagem banner -->
<span ng-if="hasText">{{bannerText}}</span>
</div>
<div id="excecao" class="excecao" ng-if="typeof(one.excecao) !== 'undefined'">
DEU EXCECAO
</div>
<div class="carousel-title" id="tituloOne" ng-if="1==1" title="{{bannerTitle}}">
{{bannerTitle}}
</div>
</div>

一些要点:

  • 我正在使用 $compile 因为我注入(inject)的模板也有 Controller 。如果我不使用它,则不会处理我的 Controller 。当我简单地插入没有 $compile 的 HTML 时,它呈现正常。

怎么了?

最佳答案

问题是 ng-bind-html 需要 html 字符串,而你给它的是 $compile 的结果,它实际上是一个元素对象。您可以从已编译的元素中获取 HTML 字符串并传递它,但您可能会遇到各种麻烦。

但您实际上可以通过使用 ngInclude 跳过 $compile 的麻烦而不是 ng-bind-html。它将为您处理模板请求和编译。

因此,与其请求和编译 strTemplatePath,不如将其存储到幻灯片列表中:

var strTemplatePath = moduleUrl.getUrl('homepage', '..' + objItem.caminho);
if (strTemplatePath) {
scope.slides.push({
htmlUrl: strTemplatePath,
id: intCurrentIndex++
});
}

然后在模板中使用它:

<div uib-slide ng-repeat="slide in slides track by slide.id" index="slide.id">
<div ng-include="slide.htmlUrl"></div>
</div>

这是一个有点工作的 fiddle :jsfiddle.net ,虽然我不得不在这里和那里填写一些空白。

关于javascript - 使用 $compile 绑定(bind) HTML 内容时,AngularUI Bootstrap Carousel 无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44808707/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com