我在JavaScript中遇到了Promise的问题。我想要做的是我得到一个地址列表,然后对于每个地址,我需要调用地理编码API来获取lat lng,然后我将继续绘制标记和热图。这是我的代码:
let promiseKey = Promise.all(
result.map()
);
var addedMarkers = promiseKey.then(
markers => Promise.all(
markers.map()
)
)
.then(drawForecastHeatmap);
我称之为地理编码API的部分:
function getBranchLatLng(address, branchName, total, queKey){
return new Promise(function(resolve){
var key = jQuery.rand(geoCodKeys);
var url = 'https://maps.googleapis.com/maps/api/geocode/json?key='+key+'&address='+address+'&sensor=false';
$.ajaxq (qyName, {
url: url,
dataType: 'json'
}).done(function( data ) {
var address = getParameterByName('address', this.url);
var index = errorArray.indexOf(address);
try{
var p = data.results[0].geometry.location;
var latlng = new google.maps.LatLng(p.lat, p.lng);
var markerItem =
{
'lat': p.lat,
'lng': p.lng,
'address': address,
'branchName': branchName,
'total': total,
};
console.log(markerItem);
resolve(markerItem);
if (index > -1) {
errorArray.splice(index, 1);
}
}catch(e){
if(data.status = 'ZERO_RESULTS')
return false;
//on error call add marker function for same address and keep in Error ajax queue
getBranchLatLng( address, 'Error' );
if (index == -1) {
errorArray.push( address );
}
}
});
//mentain ajax queue set
queuCounter++;
if( queuCounter == setLimit ){
queuCounter = 0;
}
});
}
现在的问题是,程序刚停在getBranchLatLng(),甚至从未进入addForecastMarker(),尽管我设法从地理编码中打印出一些lat lng。
回复我的一些地址:
jquery.min.js:4 GET https://maps.googleapis.com/maps/api/geocode/json?key=&address= 400 ()
然后,当我尝试扩展链接时,我得到了这个:
error_message: "Invalid request. Missing the 'address', 'bounds', 'components', 'latlng' or 'place_id' parameter."
results :[]
status: "INVALID_REQUEST"
有关如何使用'INVALID_REQUEST'将这些地址解析回Promise父级的任何想法?
谢谢!
答案 0 :(得分:0)
如果没有您在代码中使用的所有测试数据和未声明的变量,则无法生成工作代码。但总的来说,我建议您必须在ajax请求中添加catch
块,并且请记住,getBranchLatLng Promise
中的resolving
必须没有rejecting
或getBranchLatLng
承诺。
假设出现任何错误,您仍然希望解决getBranchLatLng
,我已经更新了您的代码,因此resolve
承诺中没有工作流程不会{ {1}}或reject
let promiseKey = Promise.all(
result.map(el=>getBranchLatLng(el.branchAddress, el.branchName, el.amount))
);
var addedMarkers = promiseKey.then(
markers => Promise.all(
markers.map(marker => addForecastMarker(marker))
)
)
.then(drawForecastHeatmap)
.catch(functon(e) {
//Do the error handling here
});
function getBranchLatLng(address, branchName, total, queKey) {
return new Promise(function(resolve, reject) {
var key = jQuery.rand(geoCodKeys);
var url = 'https://maps.googleapis.com/maps/api/geocode/json?key='+key+'&address='+address+'&sensor=false';
var qyName = '';
if( queKey ) {
qyName = queKey;
} else {
qyName = 'MyQueue'+queuCounter;
}
$.ajaxq (qyName, {
url: url,
dataType: 'json'
}).done(function( data ) {
var address = getParameterByName('address', this.url);
var index = errorArray.indexOf(address);
try{
var p = data.results[0].geometry.location;
var latlng = new google.maps.LatLng(p.lat, p.lng);
var markerItem =
{
'lat': p.lat,
'lng': p.lng,
'address': address,
'branchName': branchName,
'total': total,
};
console.log(markerItem);
if (index > -1) {
errorArray.splice(index, 1);
}
resolve(markerItem);
}catch(e) {
if (index == -1) {
errorArray.push( address );
}
resolve({type: 'error', status: data.status});
}
})
.catch(function(e) {
resolve({type: 'error', status: data.status});
//Instead of resolving with error code you can also reject the promise
//reject(e);
});
//mentain ajax queue set
queuCounter++;
if( queuCounter == setLimit ){
queuCounter = 0;
}
}
)};
function addForecastMarker(marker) {
console.log('adddddd markerssssss');
}
但这不是您可以用来直接获得最终结果的Boilerplate代码。当任何承诺失败时,您需要添加错误处理代码。为了您的帮助,我已使用type: 'error'
解决了这些承诺。在promiseKey
的then块中,你必须读取它们并进行进一步的错误处理,并在调用addForecastMarker
之前从数组中删除它们。
希望它有所帮助。