1
我不能調用FB.api中的method()方法。我如何訪問方法? 不能做到this.method();或方法();如何訪問Javascript中的外部對象的功能
var MyLayer = cc.Layer.extend({
init: function(){
FB.init({
............
});
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
FB.api('/me', function(response) {
this.method(); // <---- I cant call this here. How can I call method(); ?? Thank!
});
}
});
},
method: function(){
alert("Hello");
}
});
其工作ķ!謝謝!!!! – 2013-05-12 09:23:51
爲此來到這裏。謝謝。 – 2015-03-23 08:23:43