我在地图上添加了一堆标记,方法如下:
L.marker({ lat: this.latitude, lng: this.longitude }, { icon: myIcon })
.bindPopup("<h1>" + this.name + "</h1><p>" + this.desc +
"</p><button (click)=\"showMore(" + this.id +
")\">Show more</button>")
但似乎HTML代码并未由Angular编译。
如何使用Ionic 2实现这一目标,因为$ compile不再存在?