Mongodb-native (używana biblioteka klienta) nie zgłosi błędu, jeśli wyszukiwanie nie zwróciło żadnego dokumentu. Błędy są zarezerwowane dla problemów z łącznością lub składnią.
Dlatego musisz przetestować istnienie zmiennej przed jej użyciem, na przykład:
Template.findOne({ name: templateName }, function (err, template) {
if (err === null && template == null) {
// no error, but no result found
err = new Error(templateName + ' not found');
}
if (err) {
console.log('Error occured');
console.log(err.message);
// early return to avoid another indentation :)
return callback(err);
}
template_subject = template.subject;
template_html = template.dataMsg;