以下のコードを試して、最初にDBに接続できるかどうかを確認してください。 context.logの代わりにconsole.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();
}
);
});
console.log(timeSched);
で試してください timeSched
を出力します 。また、console.log(timeSched.length);
を実行すると 、timeSched
価値が与えられていません。そのため、0
を取得しました;