gpt4 book ai didi

javascript - Angular : compile google maps infoWindow content to use ng-click

转载 作者:行者123 更新时间:2023-11-29 19:29:24 26 4
gpt4 key购买 nike

我正在尝试向我的 infoWindow 中的一些动态 html 添加一个 ng-click 处理程序,如下所示,它适用于常规的 Angular Directive(指令),但不适用于 infoWindow:

      google.maps.event.addListener(marker, 'click', function() {
console.log('will compile',marker.cinemaInfo);
var html = $compile(marker.cinemaInfo)(scope);
infowindow.setContent(html);
}
infowindow.open(scope.map,marker);
scope.$apply();
});

最佳答案

嗯,虽然有些帖子说人们需要 outerHTML,但就我而言,我有以下版本:

var html = $compile(marker.cinemaInfo)(scope); 
infowindow.setContent(html[0]);

代替:

var html = $compile(marker.cinemaInfo)(scope); 
infowindow.setContent(html[0].outerHTML);

关于javascript - Angular : compile google maps infoWindow content to use ng-click,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28925379/

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