我试图将模板文件views/infowindow.html
作为我为启动googlemapsapi而编写的服务中InfoWindow的内容包括在内:
for ( var count = locations.length, i = 0; i < count; i++ ) {
var latLng = locations[i],
marker = new google.maps.Marker({
…
}),
infowindow = new google.maps.InfoWindow();
google.maps.event.addListener(
marker,
'click',
(function( marker , latLng ){
return function(){
var content = '<div ng-include src="\'infowindow.html\'"></div>';
infowindow.setContent( content );
infowindow.open( Map , marker );
}//return fn()
})( marker , latLng )
);//addListener
}//for
但是,将Angular content
插入InfoWindow时似乎没有处理(通过DevTools检查代码时,插入的代码是<div ng-include src="'views/infowindow.html'"></div>
)。
我希望Angular在将include插入到InfoWindow中之前对其进行预处理,但是可惜没有。
我想做的事可能吗?
我在想,在将模板传递给之前,必须以某种方式对其进行缓存infowindow.setContent()
,但是我不知道该怎么做(或者即使那是我 应该
做的事情)。我宁愿在事件上加载模板,而不是为每个标记缓存和注入模板。
编辑 看$templateCache和一个相关的SO问题。
编辑2
这是一个尝试使用的插件$compile
(InfoWindow的内容仍然是<div id="infowindow_content" ng-include src="'infowindow.html'"></div>
)
这是基于马克的以下回答。在他的解决方案中,InfoWindow的内容是在第一次单击(任何标记)时编译的,但是直到再次单击任何Marker时,InfoWindow才真正打开,这可能是因为GoogleMaps不耐烦。
移动$compile
外部,然后将已编译的模板传递到其中 .addListener
可以解决此问题:
for ( … ) {
…
infowindow = new google.maps.InfoWindow();
scope.markers …
var content = '<div id="infowindow_content" ng-include src="\'infowindow.html\'"></div>';
var compiled = $compile(content)(scope);
google.maps.event.addListener(
marker,
'click',
(function( marker , scope, compiled , localLatLng ){
return function(){
scope.latLng = localLatLng;//to make data available to template
scope.$apply();//must be inside write new values for each marker
infowindow.setContent( compiled[0].innerHTML );
infowindow.open( Map , marker );
};//return fn()
})( marker , scope, compiled , scope.markers[i].locations )
);//addListener
}//for
更新了Plunker。
content
将DOM添加到DOM之后,您需要找到它(也许使用jQquery选择器?),然后$compile
()将其应用于适当的范围。这将导致Angular解析您的内容并对其找到的任何指令(例如ng-include)采取行动。
例如, $compile(foundElement)(scope)
没有更多的代码,很难给出更精确的答案。但是,您可以查看以下类似的问答。
更新: 好的,我终于可以使用它了,我学到了一些东西。
google.maps.event.addListener(
marker,
'click',
(function( marker , scope, localLatLng ){
return function(){
var content = '<div id="infowindow_content" ng-include src="\'infowindow.html\'"></div>';
scope.latLng = localLatLng;
var compiled = $compile(content)(scope);
scope.$apply();
infowindow.setContent( compiled[0].innerHTML );
infowindow.open( Map , marker );
};//return fn()
})( marker , scope, scope.markers[i].locations )
我的印象是仅可以对DOM元素进行$编译-即,我首先必须将内容添加到DOM中,然后进行编译。事实证明这是不正确的。在上面,我首先content
针对进行编译scope
,然后将其添加到DOM中。(我不知道这是否会破坏数据绑定-即$compile设置的$watch()es。)我必须设置,scope.latLng
因为包含ng的模板需要插值{{latLng[0]}}
和{{latLng[1]}}
。我使用innerHTML
代替,outerHTML
以便仅插入infowindow.html的内容。
柱塞。
Update2: 第一次单击不起作用。看来“infowindow.html”要等到第二次单击才能加载(我试图第二次调用scope。$apply()…没有帮助)。当我工作时,我已经在index.html中内联了infowindow.html的内容:
<script type="text/ng-template" id="/test.html">
<h4>{{latLng[0]}},{{latLng[1]}}</h4>
</script>
我在addListener()中使用了它:
var content = '<div id="infowindow_content" ng-include src="\'/test.html\'"></div>';
我更改了插件,以使用内联模板。
我试图在IQueryable集合上使用Include扩展,但我有以下问题: 错误1'System.林克。IQueryable 我的代码: 方法返回-
使用Tomcat 7.0.34、Primefaces 3.5和mojarra 2.1.25,我得到了以下文件“client.xhtml”: 文件client.inc(这是一个普通的xhtml,在几个xhtml文件中使用)如下:(简化) 和“客户端比林.inc”:(我在其他几个xhtml文件中使用) “clientBilling.inc”中的选项卡没有显示,但如果我将其从p:tabView上取下,就
主要内容:单个Struts配置文件,多个Struts配置文件Struts 2自带有“包含文件”功能,包含多个Struts配置文件合并为一个单元。 单个Struts配置文件 让我们来看看一个糟糕的 Struts 2 配置示例。 struts.xml 在上面的Struts配置文件中,组织所有“用户”和“审核”配置设置在一个文件中,这不是建议的,必须回避。应该打破这种形式,而将struts.xml文件分成更小的模块相关的部分。 多个Struts配置文件 在Str
问题内容: 为基于JVM的服务确定docker容器的尺寸非常棘手(众所周知)。我很确定我们的容器尺寸略有不足,并且想清除一些与监视时看到的特定jcmd(本机内存跟踪器)输出有关的问题。 问题: jcmd报告的“内部”中是否包含直接字节缓冲区? jcmd报告的“代码”中除代码缓存外还有什么? 是否有一种很好的方法来限制jcmd报告的“代码”部分。我阅读了https://docs.oracle.com
通过在RequestDispatcher接口中定义的include方法,可以在一个Servlet类中包含另外一个网络资源(包括HTML、JSP、Servlet等)。在Servlet类中可以使用如下的代码获得RequestDispatcher对象: RequestDispatcher rd = getServletContext().getRequestDispatcher("/servlet/I
问题内容: 这就是我现在正在做的。有没有更好的方法来访问超类? 我正在使用Google Web Toolkit进行编程,但是我认为这确实是一个通用的Java问题。 问题答案: 您可以使用所谓的qualified 。 [JLS 15.8.4。合格的](http://java.sun.com/docs/books/jls/third_edition/html/expressions.html#15.8