我有一个循环,可以分析很长的GPS点阵列,然后根据需要选择一些点。
我想为每个GPS点找到周围的地方。
如何确保将每个响应与其他响应分开?
这是循环内的代码,当我有1个GPS点时,它可以工作,但更多的则不是:
循环GPS路径,保存在哈希表中:
for (let indexI = 0; indexI < path_hash.length; indexI++) {
for (let indexJ = 0; indexJ < path_hash[indexI].length - 2; indexJ++) {
...
准备网址请求:
location = path_hash[indexI][indexJ].data.coords.latitude + "," + path_hash[indexI][indexJ].data.coords.longitude;
var url = "https://maps.googleapis.com/maps/api/place/nearbysearch/json?" + "key=" + key + "&location=" + location + "&radius=" + radius + "&sensor=" + sensor + "&types=" + types + "&keyword=" + keyword;
...
执行请求:
https.get(url, function (response) {
var body = '';
response.on('data', function (chunk) {
body += chunk;
});
response.on('end', function () {
var places = places + JSON.parse(body);
var locations = places.results;
console.log(locations);
});
}).on('error', function (e) {
console.log("Got error: " + e.message);
})
答案 0 :(得分:1)
使用您的功能,您可以这样做
// Turn the callback function into a Promise
const fetchUrl = (url) => {
return new Promise((resolve, reject) => {
https.get(url, function (response) {
var body = '';
response.on('data', function (chunk) {
body += chunk;
});
response.on('end', function () {
var places = places + JSON.parse(body);
var locations = places.results;
resolve(locations) // locations is returned by the Promise
});
}).on('error', function (e) {
console.log("Got error: " + e.message);
reject(e); // Something went wrong, reject the Promise
});
});
}
// Loop the GPS path, saved in hash table
...
// Prepare the urls
...
const GPSPoints = [
'url1',
'url2',
...
];
// Fetch the locations for all the GPS points
const promises = GPSPoints.map(point => fetchUrl(point));
// Execute the then section when all the Promises have resolved
// which is when all the locations have been retrieved from google API
Promise.all(promises).then(all_locations => {
console.log(all_locations[0]); // Contains locations for url1
console.log(all_locations[1]); // Contains locations for url2
...
});