我想回头来谈谈反馈功能的价值,如下文所示。 不设法了解如何使其发挥作用(仅用于解释目的的执行)
console.log( hasLogin() );
function hasLogin(){
FB.getLoginStatus(function(response) {
if (response.session) {
return true;
}
else {
return false;
}
});
}
在实践中,我希望有行文记录仪,以复信。 届会确实存在。
感谢!