如何在 NodeJS 中处理多个 Google Places API 循环内的请求?

How to handle multi Google Places API request inside loop in NodeJS?

我有一个循环可以分析一长串 GPS 点,然后根据需要选择一些点。
对于每个 GPS 点,我想找到周围的地方。

如何确保将每个响应与其他响应分开?

这是循环中的代码,当我有 1 个 GPS 点时它可以工作,但如果有更多则不行:

循环 GPS 路径,保存在散列中 table:

for (let indexI = 0; indexI < path_hash.length; indexI++) {
    for (let indexJ = 0; indexJ < path_hash[indexI].length - 2; indexJ++) {

...
准备 URL 请求:

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);
})  

使用你的函数你可以这样做

// 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
  ...
});