0

我在这个问题上挣扎了几个小时,但没有成功的迹象。我正在尝试实现 facebook 登录。这是我的代码:

function fblogin() {
 FB.login(function(response) {
    if (response.authResponse) {
        var url = '/me?fields=name,email';
        FB.api(url, function(response) {
            $('#email_login').val(response.email);
            $('#pwd_login').val(response.name);
            $('#sess_id').val(response.id);
            if($('#evil_username').val()==""){
                $('#loginform').submit();
            }else{
             // doh you are bot
            }
        });
    } else {
        // cancelled
     }
  }, {scope:'email'});
 }

但是一旦我点击 facebook 登录按钮,我就会进入too much recursion控制台。这是为什么?我在stackoverflow中阅读了很多关于这个问题的问题,但找不到我的案例的线索。

我这里没有递归,但是发生了什么导致递归?

并且有人要求它

window.fbAsyncInit = function() {
FB.init({
  appId      : 'xxxxxxxxxxxxx', 
  channelUrl : '//www.mydomain.de/channel.html', 
  status     : true, 
  cookie     : true, 
  xfbml      : true  
});
// Additional init code here
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
      // connected
} else if (response.status === 'not_authorized') {
      // not_authorized
      fblogin();
} else {
      // not_logged_in
      fblogin();
}
});
};

以及LOGIN触发fblogin().

4

1 回答 1

4

我看不到您的 onclick 代码在哪里或调用的操作,fblogin()我假设问题出在何时fblogin()被调用。

 function fblogin(event) {
   event.stopPropagation();

为每个函数调用添加一个事件参数,fblogin(event)以便跨浏览器兼容。

当事件发生时,它会遍历父元素,以便它们可以继承事件处理程序,在您的情况下function fblogin()。当您停止传播时,您将stopPropagation()停止 DOM 遍历,并且调用该函数的元素不会将处理程序传递给父级(如果stopPropagation已设置)。这一切都意味着浏览器将停止循环遍历所有 DOM 元素并使 jquery 的递归性降低。

于 2013-07-14T14:17:58.713 回答