我正在尝试学习 Node.js
我在创建自己的函数回调时遇到了麻烦。这似乎是一件很简单的事情,但我不太明白该怎么做。
该函数传递了一个地址(例如:“1234 will ln, co”),该地址使用 google 的 geolocate json api 在数组中返回完整的地址、纬度和经度。
这是我的代码:
//require secure http module
var https = require("https");
//My google API key
var googleApiKey = "my_private_api_key";
//error function
function printError(error) {
console.error(error.message);
}
function locate(address) {
//accept an address as an argument to geolocate
//replace spaces in the address string with + charectors to make string browser compatiable
address = address.split(' ').join('+');
//var geolocate is the url to get our json object from google's geolocate api
var geolocate = "https://maps.googleapis.com/maps/api/geocode/json?key=";
geolocate += googleApiKey + "&address=" + address;
var reqeust = https.get(geolocate, function (response){
//create empty variable to store response stream
var responsestream = "";
response.on('data', function (chunk){
responsestream += chunk;
}); //end response on data
response.on('end', function (){
if (response.statusCode === 200){
try {
var location = JSON.parse(responsestream);
var fullLocation = {
"address" : location.results[0].formatted_address,
"cord" : location.results[0].geometry.location.lat + "," + location.results[0].geometry.location.lng
};
return fullLocation;
} catch(error) {
printError(error);
}
} else {
printError({ message: "There was an error with Google's Geolocate. Please contact system administrator"});
}
}); //end response on end
}); //end https get request
} //end locate function
所以当我尝试执行我的功能时
var testing = locate("7678 old spec rd");
console.dir(testing);
控制台记录未定义,因为它没有等待从定位返回(或者至少我猜这是问题所在)。
如何创建回调,以便当定位函数返回我的数组时,它会在它返回的数组上运行 console.dir。
谢谢!我希望我的问题是有道理的,我是自学的,所以我的技术术语很糟糕。