-1

可能重复:
php 数组在首次加载时未返回

嗨,这让我发疯了。在我意识到有一个 Facebook 特定论坛之前,我在另一个 SO 论坛上发帖,但运气不佳。所以很抱歉重新发布。

我有一个访问用户个人资料的 Facebook 登录脚本。然后,它会重定向到并填充带有注册表的页面,其中包含他们的所有个人资料信息。

这段代码跳过了所有正确的环节,但问题是第一次加载页面时变量 $fqlResult 没有被填充,因此表单保持空白。

如果我按 f5,页面重新加载,$fqlResult 返回正确的数据并填充表单。

  <?php
  $is_fb = false;
  $is_linkedin = false;
  $reg_method = $_GET['conn_social'];

  if (isset($_GET['in_uid'])){
    $cur_in_uid = $_GET['in_uid'];
  }

  if ($reg_method == "facebook"){
    $is_fb = true;
  }
  else if ($reg_method == "linkedin"){
    $is_linkedin = true;
  }

  if($is_fb) {
    global $fbconfig;
    $facebook = new Facebook(array( 'appId'  => $fbconfig['appid'],
                                    'secret' => $fbconfig['secret'],
                                    'cookie' => true ));

    $user = $facebook->getUser();

    if ($user) {
      try {
        // Proceed knowing you have a logged in user who's authenticated.
        $user_profile = $facebook->api('/me');


      } catch (FacebookApiException $e) {
        error_log($e);
        $user = null;
      }
    }

    $is_fb_uid_exist = hl_check_fb_uid_exist($user_profile['id']);

    if($is_fb_uid_exist){
      $is_fb = false;
    }

    try{
      $fql = "select name, first_name, last_name, birthday_date, sex, profile_url, hometown_location, current_location, work, activities, interests, music, tv, movies, books, quotes, about_me, website, education, sports, inspirational_people, languages, pic_square from user where uid=" . $user;

      $param = array( 'method'    => 'fql.query',
                      'query'     => $fql,
                      'callback'  => '' );

      //This is returning a blank dataset on the first page load. If you refresh the page, then the array is populated.
      $fqlResult = $facebook->api($param);
    }

 }
?>

在此之后,每个字段都填充了一个看起来像这样的调用

 <?php elseif($is_fb && isset($fqlResult[0]['first_name'])) : ?>

    <input type="text" name="hl_first_name" id="hl_first_name" style="width:130px;" value="<?php echo $fqlResult[0]['first_name']; ?>" />  
4

1 回答 1

0

在 $param 中提供访问令牌,您将在第一次加载时获得结果。

 $param = array( 'method'    => 'fql.query',
                  'query'     => $fql,
                  'access_token' => ACCESS_TOKEN,
                  'callback'  => '' );
于 2012-12-20T09:16:04.540 回答