3
我正在使用角度ui bootstrap。我想定義一個通用的模態窗口來提供一些默認按鈕,如關閉,確定,標題等。
用戶的模態正文模板作爲模板url提供。如何將用戶的模態正文模板合併到我的通用模態窗口模板中?
下面是我的通用模式窗口模板, 模式,window.tpl.html
<div class="modal-header"><h3>{{ ctrl.headerText }}</h3></div>
<div class="modal-body">
<<<< The user's template provided as URL should be embedded in here >>>
</div>
<div class="modal-footer">
<button type="button" class="btn" data-ng-click="ctrl.close()"> {{ctrl.closeButtonText}} </button>
<button class="btn btn-primary" data-ng-click="ctrl.ok();"> {{ctrl.actionButtonText}}</button>
</div>
感謝。
不錯的解決方案, 但是自定義控制器呢? – Magico
編輯我這個案例的答案 – kabaehr
這對我的用例來說非常完美!謝謝 –