Hãy thử mã bên dưới để kiểm tra xem bạn có thể kết nối với DB trước không. Sử dụng console.log thay vì 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();
}
);
});
Thử với console.log(timeSched);
để xuất ra timeSched
. Ngoài ra, khi bạn thực thi console.log(timeSched.length);
, timeSched
chưa được cấp giá trị. Đó là lý do tại sao bạn nhận được 0
;