我刚刚开始学习使用 Angular.js,但我不知道这个:
我想显示数组中选定的与数组中的value ="song.title"
匹配的项目song.title
。
这是我的代码
<select>
<option ng-repeat="song in songs.tracks">{{song.title}}</option>
</select>
现在我想在此显示更多选定的歌曲数组:
<section ng-repeat="song in songs.tracks">
<div class="panel" ng-show="panel.isSelected(1)" >
<!-- in here i wanna show stuff from the array of the selected song -->
</div>