arcgis 查询queryTask.execute的异步问题
今天在一个项目中发现queryTask.execute是异步查询,导致无法使用queryTask.execute中的结果集,搜索资料后,可使用
dojo.connect(aqueryTask, “onComplete”, function () {
// console.log(11111111);
// console.log(dataJiance);
// console.log(dataJiancelength);
// if (dataJiance.length > 0) {
// console.log(33333333333); loadDgxmData(dataJiance);
// }
// });
处理,但同时有for-each语句不能改变arrs数组的问题。
// 不能使用for-each语句改变arrs数组的元素
// for-each只能用来遍历打印数组元素
/*
for (int n : arrs) {
n = (n + 5) % 10;
System.out.print(n+” “);
}
*/
for (int i = 0; i < arrs.length; i++) {
arrs[i] = (arrs[i] + 5) % 10;
}
/*
for (int i = 0; i < arrs.length; i++) {
System.out.print(arrs[i] + ” “);
}
*/
转载自:https://blog.csdn.net/smeyou/article/details/82685808