我正在尝试将对象从 ngRepeat 传递到模式窗口......就像这样:
<div ng-repeat="slot in slots">
{{ slot }}<br>
<button ng-click="openModal()">Open</button>
</div>
<script type="text/ng-template" id="myModalContent.html">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">{{ slot.time }}</h4>
</div>
<div class="modal-body">
<p>body</p>
</div>
<div class="modal-footer">
footer
</div>
</div>
</div>
</script>
在控制器中:
$scope.openModal = function () {
$modal.open({
templateUrl: 'myModalContent.html'
})
}
将插槽传递给模态而不弄乱范围并导致时髦行为的正确方法是什么?我尝试通过<button ng-click="openModal(slot)">...
这种有效但奇怪的事情开始发生的插槽,这让我相信这不是正确的做法。有什么建议吗?