Coba kode di bawah ini untuk memeriksa apakah Anda dapat terhubung ke DB terlebih dahulu. Gunakan console.log alih-alih context.log.
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();
}
);
});
Coba dengan console.log(timeSched);
untuk menampilkan timeSched
. Selain itu, ketika Anda menjalankan console.log(timeSched.length);
, timeSched
belum diberikan nilai. Itu sebabnya Anda mendapatkan 0
;