목록Web (106)
른록노트
@ 설명$on() - 이 메소드로 이벤트를 listen함 $emit() - 특정 메소드에 데이터 전달사용법)app.controller('one',,function($scope){$scope.$emit('send', "test");} app.controller('parent',function($scope){$scope.$on('send',function(event,,data){var text = data;console.info(text);}); 결과 - "test" $broadcast() - 하나의 메소드로 여러 메소드에 데이터 전달사용법)app.controller('parent',function($scope){$scope.$broadcast('wide',"test"); app.controller('two..
공식사이트https://nodejs.org/ko/docs/guides/event-loop-timers-and-nexttick/
@ 설명- async 모듈이 필요하다 var async = require('async'); //실행시킬 js파일의 경로에 node_modules폴더 안에 집어넣으면됌 ( 찾아보기 todo ) 예제)async.waterfall([ function(callback){ callback(null, '하나', '둘'); }, function(arg1, arg2, callback){ // arg1는 '하나'고, arg2는 '둘'이다. callback(null, '셋'); }, function(arg1, callback){ // arg1은 '셋'이다. callback(null, '끝'); } ], function (err, result) { // result에는 '끝'이 담겨 온다. }); - async.waterf..
참고사이트http://webclub.tistory.com/287
참고사이트https://blueshw.github.io/2016/09/05/2016-09-05-frontend-javascript-framework-angularjs-week3-2/
참고사이트 https://parkjongin.github.io/blog/spring/Spring-configuration http://devbox.tistory.com/entry/Spring-webxml-%EA%B8%B0%EB%B3%B8-%EC%84%A4%EC%A0%95
참고사이트https://m.blog.naver.com/PostView.nhn?blogId=writer0713&logNo=220701612165&proxyReferer=https%3A%2F%2Fwww.google.co.kr%2F