관리 메뉴

Enjoy what you do!

node js 노드js 콜백 callback 함수 본문

컴공 여러가지/node.js

node js 노드js 콜백 callback 함수

쵸코맛 비비빅 2018. 1. 26. 00:23

1. 바로 매개변수에 콜백함수를 넣어주는 경우


fs.readFile('aaa.txt', function (err, data) {

    if (err) return console.error(err);

    console.log(data.toString());

});




2. 이렇게도 쓸수있다.


aa = function(a,b, callback11) {

callback11(a+b, a-b);

}


aa(10,20, function( r1, r2 ) ) {

console.log(r1);

console.log(r2);

});


답 : 

30

-10



3. 그외 여러가지 방법이 있는듯

'컴공 여러가지 > node.js' 카테고리의 다른 글

node js 쓰는이유  (0) 2018.02.05
node js promise, 콜백헬 해결하기  (0) 2018.01.29
express.js 도큐멘트 사이트, node.js 공부  (0) 2018.01.23
Comments