未捕获的TypeError:无法读取未定义的属性“name”

时间:2013-03-09 15:35:08

标签: javascript facebook facebook-graph-api facebook-javascript-sdk

我尝试使用facebook api将数据提取到表单输入中。 现在,一切都很顺利,直到我试图获取当前用户的位置。

如果当前用户已经分享了他的位置(他居住的地方),那么我没有遇到任何问题。但是,如果用户没有在Facebook上分享他的位置,我收到一个错误: Uncaught TypeError: Cannot read property 'name' of undefined

以下是我一直在使用的代码。如果你有任何想法如何解决,请在这里评论:)

<div id="fb-root"></div>
<script>
  // Additional JS functions here
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '*******', // App ID
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    FB.getLoginStatus(function(response) {
  if (response.status === 'connected') {

    FB.api('/me', function(response) {
  document.getElementById("user_login").value="FB - " + response.username;
  document.getElementById("user_email").value=response.email;
  document.getElementById("first_name").value=response.first_name;
  document.getElementById("last_name").value=response.last_name;
  document.getElementById("user_url").value=response.link;
  document.getElementById("fbid").value=response.id;
  if(response.location !== 'undefined')
  {
    document.getElementById("location").value=response.location.name;
    alert(response.location.name);
  }
  document.getElementById("registerform").submit();

});

  } else if (response.status === 'not_authorized') {
    alert('error');
  } else {
    alert('Please Log In!');
  }
 });

  };

  // Load the SDK Asynchronously
  (function(d){
     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));
</script>

1 个答案:

答案 0 :(得分:17)

在这一行:

if(response.location !== 'undefined')

...您正在检查response.location是否不是字符串 "undefined"。由于undefined不是字符串"undefined",因此条件为真。然后,您尝试使用response.location.name,而response.locationundefined,则会收到错误。

你可能意味着:

if(response.location)

if(typeof response.location !== 'undefined')