无法访问 spotify 对象

Cant access spotify object

我想显示从我的 api 控制器传来的艺术家的专辑 请求是 here。 我可以访问信息对象,但是当我访问相册对象时,它 returns 未定义

<script>
$(function () {
    $('table tr').click(function () {
        var id = this.id;
        $.ajax({
            type: "GET",
            url: '/api/author/GetName/' + id,
            contentType: "text/plain charset-utf-8",
            data: id,
            dataType: "json",
            success: function (data) {
                getDetails(data.name);

            }
        });
        }

    );
});//End ready
function getDetails(art) {
    $.ajax({
        type: "GET",
        url: 'http://ws.spotify.com/search/1/track.json?q='+ art ,
        dataType: 'json',
        success: function (data) {

            $('#summaryDisplay').empty();
            $('#summaryDisplay').append((JSON.stringify(data.albums)) + '<br/>');

            alert(JSON.stringify(data.info));
        },
        error: function (data) {
            $('#summaryDisplay').html('<h3>Error in retrieval</h3>');
        }
    });
}

您在代码中访问了错误的 URL。使用 album 而不是 track.

{
    // [...]
    url: 'http://ws.spotify.com/search/1/album.json?q='+ art,
    // [...]
}