Mike 3 年 前
コミット
2eacd82d2a
1 ファイル変更8 行追加6 行削除
  1. 8 6
      desktop11/index.html

+ 8 - 6
desktop11/index.html

@@ -67,12 +67,14 @@ function testAPI() {                      // Testing Graph API after login.  See
     FB.api('/me/?fields=id,name,email', function(response) {
         console.log('FB成功登入: ' + JSON.stringify(response));
 
-        // 設定欄位預設值
-        $('#email').text(response.email);
-        $('#name').text(response.name);
-
-        // 隱藏FB登入按鈕
-        $('#fb_login').hide();
+        if (response.name) {
+            // 設定欄位預設值
+            $('#email').text(response.email);
+            $('#name').text(response.name);
+
+            // 隱藏FB登入按鈕
+            $('#fb_login').hide();
+        }
     });
 }
 </script>