我有一份技术人员列表,我需要这些技术人员来获取某个位置之间的个人驾驶时间。我一直在使用脚本在其中执行此操作,Google Sheets
但我宁愿在我的 Web 应用程序中进行计算。这里当然有一些问题。一个是我不能只在 for 循环中发出这些请求而没有某种延迟,否则我会得到一个over_query_limit
错误。另一个问题是我想要一种方法让用户知道所有请求都已完成,这就是我坚持的部分。我目前正在使用google-maps-react
npm 包来完成此操作。
这是我目前拥有的:
TechDriveTimeTest(techs, kioskInfo){
let result = []
techs.forEach(tech => {
if(tech.Address != "" && !tech.Notes.includes('Not')){
result.push(tech);
}
})
//console.log(result);
let directionsService = new google.maps.DirectionsService();
result.forEach((tech, index) => {
let techAddress = tech.Address + " " + tech.City + " " + tech.State + " " + tech.Zip
let req = {
origin: techAddress,
destination: 'some destination',
travelMode: 'DRIVING'
}
this.GetTime(index, req, directionsService);
})
}
GetTime(i, req, service){
setTimeout(function(){
service.route(req, function(res, status){
if(status == 'OK'){
let time = res.routes[0].legs[0].duration.text
console.log(time);
}
})
}, (i+1) * 1000)
}
这段代码可以很好地延迟请求,这样我就不会再收到错误了,但是很高兴知道所有请求何时完成,这样我就可以通知用户了。谢谢!