【发布时间】:2016-05-31 23:21:33
【问题描述】:
Angular UI Popover 是否可以使用带有动态 ID 的模板?
例如:
<div ng-repeat="row in data">
<button class="btn" uib-popover-template="'myTemplate_{{row.id}}.html'" popover-trigger="mouseenter">View</button>
<script type="text/ng-template" id="myTemplate_{{row.id}}.html">
<strong>Name</strong>: {{row.name}}<br/>
<strong>Phone</strong>: {{row.phone}}<br/>
<strong>Email</strong>: {{row.email}}
</script>
</div>
当我将鼠标悬停在按钮上时,Angular 会尝试从服务器获取模板(例如 myTemplate_1.html),而不是使用 ng-template。
我接近这个了吗?如果没有,将动态 html 内容分配给弹出框的最佳方法是什么?
谢谢。
【问题讨论】:
标签: angularjs angular-ui-bootstrap angular-ui