gpt4 book ai didi

node.js - nodejs async myMethod 未定义

转载 作者:太空宇宙 更新时间:2023-11-03 23:38:21 24 4
gpt4 key购买 nike

从异步中调用模块自己的方法时,出现以下错误。

ReferenceError: RetriveLongitude is not defined
at D:\Userfiles\oozen\Workspace\sas_1.0_server\sas_1.0\backgroundProcesses\searchTravelSolutions\PositionReferences.js:234:5
at D:\Userfiles\oozen\Workspace\sas_1.0_server\sas_1.0\node_modules\async\lib\async.js:570:21
at D:\Userfiles\oozen\Workspace\sas_1.0_server\sas_1.0\node_modules\async\lib\async.js:249:17
at D:\Userfiles\oozen\Workspace\sas_1.0_server\sas_1.0\node_modules\async\lib\async.js:125:13
at Array.forEach (native)

PositionReferences模块如下:

var RetrieveCoordinates = function(tw, callback){

async.parallel([function(callback) {
RetrieveLatitude(tw, callback);
}, function(callback) {
RetriveLongitude(tw, callback);
}
], function(err, coordinates) {
if (err) {
console.log('err occuured in Lattitude / Longitude retrieval : ' + err);
return callback(err);
}

callback(null, coordinates);
});

}

function RetrieveLatitude(tw, callback) {

var latitude = JsonInfo.getLatitude(tw);
// check if the user has already specified a place (e.g. Eiffel tower) in tw
if (latitude != undefined) {
return callback(null, latitude);
}
// get latitude of the airport from the DB
db.collection('city').find({
"information.airports.code": place
}).toArray(function(err, position) {
if (err) return callback(err);
latitude = position['information']['city_coordinates']['latitude'];
console.log("[PositionReferences-RetrieveLatitude] found" + Lat);
return callback(null, latitude);
});
}
function RetrieveLongitude(tw, callback) {
var longitude = JsonInfo.getLongitude(tw);
// check if the user has already specified a place (e.g. Eiffel tower) in tw
if (longitude != undefined) {
return callback(null, longitude); }
db.collection('city').find({
"information.airports.code": place
}).toArray(function(err, position) {
if (err) return callback(err);
city = postion['name'];
longitude = position['information']['city_coordinates']['longitude'];
console.log("[PositionReferences-RetrieveLatitude] found" + longitude);
return callback(nulll, longitude);
});
}
//module.exports.RetrieveLatitude = RetrieveLatitude;
//module.exports.RetrieveLongitude = RetrieveLongitude;
module.exports.RetrieveCoordinates = RetrieveCoordinates;

除了声明:module.exports.RetrieveLatitude

我还尝试设置 var that = this; 并对其调用 Lat/Long 方法。

为什么这些都不起作用?

最佳答案

您正在调用 RetriveLongitude,而不是 RetrieveLongitude

关于node.js - nodejs async myMethod 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28428954/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com