1
是否可以使用帶有動態ID的模板進行Angular UI Popover?Angular UI Bootstrap:動態彈出窗口模板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>
當我鼠標懸停按鈕角試圖從服務器獲取的,而不是使用納克模板模板(例如myTemplate_1.html)。
我接近這個權利嗎?如果沒有,將動態html內容分配給popovers的最佳方式是什麼?
謝謝。
謝謝。我過分複雜的整件事哈哈。 – Nick
@它發生了大聲笑。 – Jhecht
您必須將模板和觸發字符串放在單引號中才能使其工作。' – programmer