我想获取 youtube 视频
代码示例
var youstinky = {
getYoutubeData : function(){
$.getJSON("http://gdata.youtube.com/feeds/api/standardfeeds/most_popular?v=2&alt=json",function(data){
this.x = data.feed.entry.map(function(dat){
return {
'link' : dat.link[0].href,
'name' : dat.title.$t
};
});
});
}
};
$(document).ready(function(){
youstinky.getYoutubeData();
});
我无法在 youstinky 对象之外获取 this.x 变量,
我该怎么办?