我正在开发一个Facebook应用程序,直到今天早上一直工作。我只是注意到Ι不能使用jquery为文本框赋值。
if (response.status === 'connected') {
var uid = response.authResponse.userID;
accessToken = response.authResponse.accessToken;
FB.api('/me', function(info) {
console.log(info);
getPredictions(info.email);
$('#u_email_lbl').html(info.email);
$('#u_fname_lbl').html(info.first_name);
$('#u_lname_lbl').html(info.last_name);
$('#u_gender_lbl').html(info.gender);
$('#my_pred_email').html(info.email);
$('#pred_email').val(info.email);
$('#fname').val(info.first_name);
$('#lname').val(info.last_name);
$('#email').val(info.email);
$('#gender').val(info.gender);
});
控制台记录所有信息,但不能为文本框分配值。 facebook改变了应用程序的运作方式吗?该剧本周六工作