我正在努力解决这个问题几个小时,但没有成功的迹象。我正在尝试实现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()
按钮。
答案 0 :(得分:4)
我看不到您的onclick代码在哪里或者调用fblogin()
的操作,我假设问题是在fblogin()
被调用时。
function fblogin(event) {
event.stopPropagation();
为每个函数fblogin(event)
调用添加一个事件参数,这样就可以跨浏览器兼容了。
当事件发生时,它遍历到父元素,以便它们可以继承事件处理程序,在您的情况下function fblogin()
。停止传播时stopPropagation()
停止DOM遍历,如果设置了stopPropagation
,则调用该函数的元素将不会将处理程序传递给父级。这意味着浏览器将停止循环遍历所有DOM元素并使jquery减少递归。