Hi everyone,
I’m trying to make a playlist app with ionic, and I would like to show on each state by id the title (this is a starter app from ionic sidemenu template, without many changes from the beginning), here is the code :
controllers.js =>
.controller('PlaylistsCtrl', function($scope) {
$scope.playlists = [
{ title: 'Reggae', id: 1 },
{ title: 'Chill', id: 2 },
{ title: 'Dubstep', id: 3 },
{ title: 'Indie', id: 4 },
{ title: 'Rap', id: 5 },
{ title: 'Cowbell', id: 6 }
];
})
.controller('PlaylistCtrl', function($scope, $stateParams) {
$scope.playlists = [
{ title: 'Reggae', id: 1 },
{ title: 'Chill', id: 2 },
{ title: 'Dubstep', id: 3 },
{ title: 'Indie', id: 4 },
{ title: 'Rap', id: 5 },
{ title: 'Cowbell', id: 6 }
];
})
playlists.html =>
<ion-view view-title="Playlists">
<ion-content>
<ion-list>
<ion-item ng-repeat="playlist in playlists" href="#/app/playlists/{{playlist.id}}">
{{playlist.title}}
</ion-item>
</ion-list>
</ion-content>
</ion-view>
playlist.html =>
<ion-view view-title="Playlist">
<ion-content ng-repeat="playlist in playlists">
<h1>Playlist {{playlist.title}}</h1>
</ion-content>
</ion-view>
So I think that I don’t use the good way, but I tried many things, with ng-bind and ng-controller, with the array only in the first controller, with ion-list and item, but nothing seems to work…
To help you understand what I try to do :
-
on the main screen (playlists.html) is a music gender playlist (the list in controllers.js) where it’s possible to click on each element of the list;
-
when we click on an element, we arrive on a screen (playlist.html) where is only the word “Playlist” follow by the title of the state from the id, like Playlist Reggae for the first one, Playlist Chill for the second one, …
But with this code I give, each title are superimposed on each state (screen)…
With some other code, I find how to have Playlist Reggae on each screen, but that’s not good, or I find to have the whole list with the word Playlist before each element on each screen too, not good !!
I’m on it since yesterday without any solution but with less hair !
Thanks in advance…