FB.api 内で method() を呼び出すことができません。メソッドにアクセスするにはどうすればよいですか? できない this.method(); またはメソッド();
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");
}
});