04 Ocak 2012 güncellemesi
Görünüşe göre FB-bağımlı yöntemleri (örneğin FB.getAuthResponse()
) daha FB.init()
önce olduğu FB.init()
gibi hemen sonra çağıramazsınız , şimdi asenkron gibi görünüyor. Kodunuzu FB.getLoginStatus()
yanıt olarak sarmalamak, API'nin tam olarak hazır olup olmadığını tespit etme işini görür:
window.fbAsyncInit = function() {
FB.init({
//...
});
FB.getLoginStatus(function(response){
runFbInitCriticalCode();
});
};
veya fbEnsureInit()
aşağıdan uygulama kullanılıyorsa :
window.fbAsyncInit = function() {
FB.init({
//...
});
FB.getLoginStatus(function(response){
fbApiInit = true;
});
};
Orijinal Gönderi:
FB başlatıldığında sadece bir komut dosyası çalıştırmak istiyorsanız, içine bazı geri çağırma işlevi koyabilirsiniz fbAsyncInit
:
window.fbAsyncInit = function() {
FB.init({
appId : '<?php echo $conf['fb']['appid']; ?>',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.Canvas.setAutoResize();
runFbInitCriticalCode(); //function that contains FB init critical code
};
FB.ensureInit'in tam olarak değiştirilmesini istiyorsanız, resmi bir değişiklik olmadığı için kendi başınıza bir şeyler yazmanız gerekir (büyük hata imo). İşte kullandığım şey:
window.fbAsyncInit = function() {
FB.init({
appId : '<?php echo $conf['fb']['appid']; ?>',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.Canvas.setAutoResize();
fbApiInit = true; //init flag
};
function fbEnsureInit(callback) {
if(!window.fbApiInit) {
setTimeout(function() {fbEnsureInit(callback);}, 50);
} else {
if(callback) {
callback();
}
}
}
Kullanımı:
fbEnsureInit(function() {
console.log("this will be run once FB is initialized");
});