如何正确地将Facebook JavaScript SDK注入AngularJS控制器?

时间:2012-12-10 11:16:31

标签: facebook-javascript-sdk angularjs

我是AnuglarJS的新手,已经用它构建了一个小型的网络应用程序, 我想使用Facebook JavaScript SDK,但使用最佳实践(依赖注入控制器,以维护应用程序结构和可测试性)。

我找到了https://groups.google.com/forum/#!msg/angular/bAVx58yJyLE/Kz56Rw-cQREJ 但是对于这个框架的新手来说非常困惑(模块,服务和工厂没有很好地解释恕我直言)。

那么,在AngularJS应用程序中使用Facebook SDK的正确方法是什么?

5 个答案:

答案 0 :(得分:5)

我实际上不得不这样做...我没有代码跟我一起,无论如何它可能都是专有的......但它基本上是这样的:

// create a simple factory:    
app.factory('facebook', ['$window', function($window) {

    //get FB from the global (window) variable.
    var FB = $window.FB;

    // gripe if it's not there.
    if(!FB) throw new Error('Facebook not loaded');

    //make sure FB is initialized.
    FB.init({
       appId : 'YOUR_APP_ID'
    });

    return {
        // a me function
        me: function(callback) {
            FB.api('/me', callback);
        }

        //TODO: Add any other functions you need here, login() for example.
    }
}]);

// then you can use it like so:
app.controller('SomeCtrl', function($scope, facebook) {

    //something to call on a click.
    $scope.testMe = function() {

       //call our service function.
       facebook.me(function(data) {
          $scope.facebookUser = data;

          //probably need to $apply() this when it returns.
          // since it's async.
          $scope.$apply();
       });
    };
});

如果有任何错误,请告诉我,我会查看我的工作代码,看看我错过了什么。但这应该是关于它的。

答案 1 :(得分:5)

2015年编辑!

这是一个陈旧的答案。我建议你查看github上流行的角度模块是如何做到的,或者只是使用它们:

旧答案

由于应用程序启动时调用出现问题,我使用以下方法,该方法仅在加载SDK后加载应用程序:

window.fbAsyncInit = function () {
FB.init({
    appId: window.fbConfig.appID,
    channelUrl: '//' + window.location.hostname + window.location.pathname + 'channel.php',
    status: window.fbConfig.oInitOptions.bStatus || true,
    cookie: window.fbConfig.oInitOptions.bCookie || true,
    xfbml: window.fbConfig.oInitOptions.bXfbml || true
});


// Get Login Status once at init
window.FB.getLoginStatus(function (oResponse) {
    if (oResponse && oResponse.status) {
        window.fbConfig.sAuthStatus = oResponse.status;
    }

    // Bootstrap app here only after the sdk has been loaded
    angular.bootstrap(document.body, ['fbAngularApp']);
});
};

// Load the SDK Asynchronously
(function (d) {
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {
    return;
}
js = d.createElement('script');
js.id = id;
js.async = true;
js.src = '//connect.facebook.net/' + window.fbConfig.lng + '/all.js';
ref.parentNode.insertBefore(js, ref);
}(document));

答案 2 :(得分:2)

我写过这个angularjs-facebook服务。 首先,在您的应用模块配置方法上初始化它,以初始化您的Facebook应用ID和其他设置。

然后,您只需从控制器调用Facebook服务,并正常地调用Facebook方法异步。

https://github.com/ciul/angularjs-facebook

答案 3 :(得分:0)

唯一有效的方法是以旧方式在索引页面中包含sdk。

因为我已经从@blesh实现了相同的解决方案,或者从@elviejo实现了扩展版本,如果我们有一个在调用控制器时调用的函数,它们都有问题,FB不是初始化非常高,这将使调用从undefined :)

调用函数失败

希望这可以帮助其他人避免头痛。

答案 4 :(得分:0)

我对此感到困惑了一段时间,我用$ watch

解决了这个问题
$scope.FBListener();

加载FB后,您可以通过调用$computers = Get-Content %PATH%\Computers.txt $credentials = Get-Credential -Credential domain\username ForEach ($computer in $computers) { Write-Host "Computer Name: $computer" Invoke-Command -ComputerName $computer -Credential $credentials -ScriptBlock {netsh wlan show interfaces} | select-string "State" }

清除$ watch(这可能是性能最佳)