我有这个返回的JSON:
results: Array[15]
0: Object
created_at: "Wed, 10 Aug 2011 22:45:36 +0000"
from_user: "CriisBellaFlor"
from_user_id: 360990380
from_user_id_str: "360990380"
geo: null
我正在使用此代码循环它:
var twitterUrl='http://search.twitter.com/search.json?callback=?&q=';
query='cinema';
$.getJSON(twitterUrl+query,function(json){
console.log(json);
$.each(json.results,function(i,tweet){
if(tweet.iso_language_code == 'en'){
if(tweet.geo === 0){
$(cinemas).append('<img src="'+tweet.profile_image_url+'" width="48" height="48" />'+tweet.text+'<br />');
} else {
$(cinemas).append('<img src="'+tweet.profile_image_url+'" width="48" height="48" />'+tweet.text+'Coordinates:' + tweet.geo.coordinates[0] + ' + ' + tweet.geo.coordinates[1] + '<br />');
}
}
});
});
所以我想确定的是,如果“geo”为null,请不要尝试显示坐标,如果有什么,请显示它们。
但是我收到了这个错误:
Uncaught TypeError: Cannot read property 'coordinates' of null
答案 0 :(得分:5)
试试
if(tweet.geo === null){
BTW,===
表示比较检查也是变量的类型