SoundCloud自定义播放器/ jQuery:使用beforeRender从列表中删除曲目

时间:2012-03-27 19:45:12

标签: jquery soundcloud

我尝试使用jQuery和自定义播放器(http://developers.soundcloud.com/docs/custom-player)根据给定的标签从SoundCloud用户创建一个跟踪列表。登记/> (简化)循环有效,但删除功能不能删除对象。

$('.soundcloud').scPlayer({
    links: [{
        url: "http://soundcloud.com/myusername",
        title: "http://soundcloud.com/myusername"
    }],
    beforeRender : function(tracksData) {
        $.each(tracksData, function(index, item) {
            tags = item.tag_list.toLowerCase().split(' ');
            if(jQuery.inArray("mytag", tags)>1) {
                 console.log('this track is not allowed');
                 delete tracksData.item // this is my problem, right here
            }
        });
    }
});

有什么建议吗?提前谢谢!

0 个答案:

没有答案