我正在使用ng-repeat
在不同的引導程序modal
中顯示不同的內容(即數組中的項目),但在此example中發生了一些奇怪的事情。ng-repeat在引導模式下不起作用
我包括在ng-repeat
這樣的「模式」:
<div ng-repeat="item in items">
<button type="button" class="btn btn-info" data-toggle="modal" data-target="#example">
{{item}}
</button>
<div class="modal" id="example">
<div class="modal-content">
{{item}}
</div>
</div>
</div>
所以預期的結果應該是三個按鈕有三個不同的內容(如<button>
「喜」應該有內容hi
,hello
有內容hello
),但正如您在示例中看到的,所有三個按鈕都具有相同的關聯模態內容。
任何意見或建議,表示讚賞。
您的數據,目標是所有三個都一樣,因爲你使用id = example。 看到我的解答 –