對於一組用戶,我有一個ng-repeat
,我希望能夠單擊每個用戶以在Ionic Modal中顯示其詳細的配置文件信息。將ng-repeat值傳遞給Ionic Modal
這裏的實際HTML:
<div ng-repeat='user in users track by $index' ng-click="openModal()">
<div class="col">
<div class="col profile-image" >
<img src="img/default_user.jpg" class="connect_image" /><br />{{user.name}}<br />
<span class="connect_subject">{{user.about}}</span>
</div>
</div>
</div>
這裏是一個示例模態是在模板中:
<script id="profile-modal.html" type="text/ng-template">
<div class="modal">
<ion-header-bar>
<h1 class="title">{{user.name}}</h1>
</ion-header-bar>
</div>
</script>
的問題是,我該如何傳遞ng-repeat
用戶變量進入模式,所以我可以訪問user.name
?
你能提供'openModal'代碼嗎? – Grundy