我目前正在加载一个json文件然后解析它。 json文件中的条目存储为“places”,我将其定义为全局变量,但浏览器仍然说它未定义。
var request;
var places;
var map;
var myLatLng = {lat: 34, lng: 38};
// load database and parse into entries
if (window.XMLHttpRequest) {
request = new XMLHttpRequest();
} else {
request = new ActiveXObject("Microsoft.XMLHTTP");
}
request.open('GET', 'places.json');
request.onreadystatechange = function() {
if ((request.readyState ===4) && (request.status===200)) {
places = JSON.parse(request.responseText);
}
}
request.send();
function initMap() {
var mapOptions = {
zoom: 6,
center: myLatLng,
mapTypeControl: true,
mapTypeControlOptions: {
style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR,
position: google.maps.ControlPosition.TOP_RIGHT
},
mapTypeId: google.maps.MapTypeId.HYBRID
};
// initialize the map
var map = new google.maps.Map(document.getElementById('map'), mapOptions);
for (var i = 0; i < places.length; i++) {
// the place
var place = places[i];
// place co-ordinates
var latlng = new google.maps.LatLng(place.latitude, place.longitude);
var marker = new google.maps.Marker({
position: latlng,
map: map,
title: place.city
});
}
}
答案 0 :(得分:0)
Jonathan Lonowski和Shashank提供的评论是您遇到问题的最可能原因。您需要确保在 AJAX调用完成后调用initMap
。因此,您可以将onreadystatechanged
方法修改为以下内容:
request.onreadystatechange = function() {
if ((request.readyState ===4) && (request.status===200)) {
places = JSON.parse(request.responseText);
initMap();
}
但是,我想在Javascript用语中清除undefined
的概念。
在Javascript中声明变量(但没有赋值给它)时,它被设置为undefined
的值。请注意,undefined
不与null
相同,后者更多是分配值。
This回答将明确undefined
和null
之间的混淆。然后,您将能够理解为什么浏览器将变量显示为undefined
。
根据来自OP的评论进行编辑如果您从HTML文件中调用该方法,仍然有一种方法可以使页面正常运行,但延迟时间可以忽略不计。
请参阅我建议的替代解决方案
var request;
var places;
var map;
var myLatLng = {lat: 34, lng: 38};
// load database and parse into entries
if (window.XMLHttpRequest) {
request = new XMLHttpRequest();
} else {
request = new ActiveXObject("Microsoft.XMLHTTP");
}
request.open('GET', 'places.json');
request.onreadystatechange = function() {
if ((request.readyState ===4) && (request.status===200)) {
places = JSON.parse(request.responseText);
//now that the places array has been initialized you can call
//placeMarkers() to place markers on the map.
placeMarkers();
}
}
request.send();
//initMap can be safely invoked within the HTML page using window.onload.
//this only initializes the map instance and sets it to a valid reference.
//there are *no* place markers added yet
function initMap() {
var mapOptions = {
zoom: 6,
center: myLatLng,
mapTypeControl: true,
mapTypeControlOptions: {
style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR,
position: google.maps.ControlPosition.TOP_RIGHT
},
mapTypeId: google.maps.MapTypeId.HYBRID
};
// initialize the map. Here map should be the global variable and not a new declaration
map = new google.maps.Map(document.getElementById('map'), mapOptions);
}
function placeMarkers(){
for (var i = 0; i < places.length; i++) {
// the place
var place = places[i];
// place co-ordinates
var latlng = new google.maps.LatLng(place.latitude, place.longitude);
var marker = new google.maps.Marker({
position: latlng,
map: map,
title: place.city
});
}
}