ИР
Size: a a a
ИР
LK
C☭
R
N👩
A_
C☭
TC

AK

IL

К
<header-template></header-template>
<div class="title">List of songs</div>
<div class="list-group">
<a
href="#"
class="list-group-item list-group-item-action"
ng-repeat="item in ctrl.globalState.songsData"
>
{{item.title}}
</a>
</div>AK
К
AK
К
AK
К
app.controller("playerController", function (
$scope,
$rootScope,
$http,
) {
const ctrl = this;
ctrl.globalState = $rootScope.state;
$http({
method: "GET",
url: "https://api.deezer.com/artist/338/top?limit=30",
}).then((response) => {
ctrl.globalState.songsData = response.data.data;
});
});AK
AK
К