在另一个函数内调用一个函数

时间:2013-10-31 11:44:11

标签: javascript node.js

是node.js的新手

我想要的是在另一个函数中调用shedule.schedulejobs。 以下代码用于将一些数据更新到db.i中,希望在将详细信息更新到database后调用schedulejob。这是可能的。

    exports.saveJobs = function (jobsCollection, context) {
      console.log(utils.httpBody(context.req));
      var record = utils.httpBody(context.req);  
      var id =record.id;
      var date =record.date;
      jobsCollection.update({ id: record.id}, { $set: record}, { upsert: true }, function (err, result) {
         if (!err) return context.sendJson([], 404);
// i need to call the schedule jobs after performing updation to db
                 schedule.scheduleJob(date, function (id) {
     });
     });

    }

安排工作职能

var j = schedule.scheduleJob(date, function(id){
            return function(){
            console.log("inside----------")
            console.log(id)
            };

            }(id));

0 个答案:

没有答案