Проблема: моя асинхронная функция c обновляет базу данных, но затем не продолжается с остальной частью сценария.
//Process the data after you get it...
async function burnStatus(data) {
console.log("Burn Data Compiled Saving...");
let filter = { _id: "5e4454059a0be1c238b5f70b" };
if (data.error === true) {
console.log("Error retrieving burn data.");
var update = { update: burn.date, error: data.error };
} else {
var update = {
date: data.date,
precipitation: data.precipitation,
wind: { morning: data.wind.morning, afternoon: data.wind.afternoon },
ventIndex: data.ventIndex,
aqi: data.aqi,
updated: data.updated
};
}
console.log(update);
let doc = await BURN.findOneAndUpdate(filter, update, { upsert: true }, (error, result) => {
// *** NOTHING BELOW HERE EXECUTES EVEN THOUGH THE DB DOES GET UPDATED. ***
if (error) {
console.log(error);
} else {
console.log(result);
}
});
console.log("Burn Data Updated");
}
Вот вывод:
Getting Burn Data...
(node:16248) DeprecationWarning: current Server Discovery and Monitoring engine is deprecated, and will be removed in a future version. To use the new Server Discover and Monitoring engine, pass option { useUnifiedTopology: true } to the MongoClient constructor.
Response Received Processing...
Precipitation: 0
Morning Wind: 6
Afternoon Wind: 8
Ventilation Index: POOR
AQI: 48
Burn Data Compiled Saving...
{
date: '02/13/20',
precipitation: 0,
wind: { morning: 6, afternoon: 8 },
ventIndex: 'POOR',
aqi: 48,
updated: '2020-02-13T12:42:11.201Z'
}
Устранение неполадок:
Мне удалось отследить его до строки let doc = await BURN.findOneAndUpdate(filter, update, (error, result) => {
. Я не могу заставить его выдать ошибку, которую я могу поймать (или я не пытаюсь правильно ее перехватить).
Итак, я предполагаю, что ошибки нет, и я просто что-то делаю неправильно.