यह जांचने के लिए नीचे दिए गए कोड को आज़माएं कि क्या आप पहले डीबी से जुड़ सकते हैं। संदर्भ.लॉग के बजाय कंसोल.लॉग का उपयोग करें।
const df = require("durable-functions");
const mongoClient = require("mongodb").MongoClient;
module.exports = df.orchestrator(function*(context) {
var mongoClient = require("mongodb").MongoClient;
mongoClient.connect(
"mongodb://tonytest:78jst6Mh****.documents.azure.com:10255/?ssl=true",
function(err, client) {
if (err) {
console.log(`Error occurred while connecting to DB ${err}`);
return context.done();
} else {
console.log("MongoClient connected to DB");
}
client.close();
}
);
});
console.log(timeSched);
. के साथ प्रयास करें आउटपुट करने के लिए timeSched
. इसके अलावा, जब आप console.log(timeSched.length);
. निष्पादित करते हैं , timeSched
मूल्य नहीं दिया गया है। इसलिए आपको 0
मिला है;