javascript - Create callback in node js module.exports - Stack Overflow

How to create a callback function inside the module.exports parameter.I'm trying to do a similar

How to create a callback function inside the module.exports parameter. I'm trying to do a similar thing as below and I want to know how to implement callback function.

module.js

module.exports = (a, b, callback) => {
  let sum = a+b
  let error = null
  //callback
}

app.js

const add = require(./module.js)

  add(1,2, (err, result) => {

  }

How to create a callback function inside the module.exports parameter. I'm trying to do a similar thing as below and I want to know how to implement callback function.

module.js

module.exports = (a, b, callback) => {
  let sum = a+b
  let error = null
  //callback
}

app.js

const add = require(./module.js)

  add(1,2, (err, result) => {

  }
Share Improve this question edited Sep 15, 2018 at 17:13 Omid Nikrah 2,4803 gold badges16 silver badges31 bronze badges asked Sep 15, 2018 at 17:08 chxruchxru 5811 gold badge5 silver badges16 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 8

within your module.exports you need to "invoke" the call back function. like so

callback(error, sum)

this will return the control back to the app.js add() function. You implement your callback function here. i.e what you want to do with the result you received.

Here is what your code will look like:-

module.js

    module.exports = (a, b, callback) => {
      let sum = a+b
      let error = null
      callback(error, sum) // invoke the callback function
    }

app.js

    const add = require("./module")

    add(1,2, (err, result) => {
      if(err) { // Best practice to handle your errors
          console.log(err)
      } else { // Implement the logic, what you want to do once you recieve the response back 
        console.log(result) 
      }
    })

You have used sum for your function; but I will be using divide, because that way I can show you the error thing of callback.

your export will look like this

module.exports = {
  divide: (a,b,cb) => {
    if (b === 0) {
      cb('divide by zero', null);
    } else {
      cb(null, a/b);
    }
  }
}

and the import like this

var func = require('./testExport').divide;
func(1,2,(err,res) => {
  console.log(err,res);
});
func(1,0,(err,res) => {
  console.log(err,res);
})

Call backs are simply the function that you send in from the place you are calling the functions. In both function calls (in imported place) you see we are sending in a function as a callback that takes in two arguments.

In the exported place we call that same function with the first parameter as an error and the second as res.

If you want to import your function without require().func, you will have to export the function in default.

module.exports = (a,b,cb) => {
  if (b === 0) {
    cb('divide by zero', null);
  } else {
    cb(null, a/b);
  }
}

and import it as

var defaultFunc = require('./testExport')

add.js

module.exports = (a, b, callback) => {
   if (typeof a !== 'number' || typeof b !== 'number') {
      return callback(new Error('Invalid argument passed'), null);
   }
   let sum = a + b;
    callback(null, sum);
};

app.js

const add = require('./add');

add(1, 2, (err, result) => {
  if (err) {
     console.log(err);
  }
  console.log(result);
});

Here we are passing error as the first parameter and actual sum as the second parameter to the callback function. Say if we pass a string instead of the number then the first parameter will have the error object and result will be null.

Cheers.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743703847a4493030.html

相关推荐

  • javascript - Create callback in node js module.exports - Stack Overflow

    How to create a callback function inside the module.exports parameter.I'm trying to do a similar

    16小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信