목록Web/[Angular] (8)
른록노트
@ 설명$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://blueshw.github.io/2016/09/05/2016-09-05-frontend-javascript-framework-angularjs-week3-2/
$emit() : 특정 함수를 지정하여 데이터를 전송 $on() : 특정 함수를 만들어 놓고 데이터를 받아서 사용 할 수 있음 예시:-컨트롤러1var data = "데이터값";$scope.$emit("sendData",data); -컨트롤러2$scope.$on("sendData",function(event,data){$scope.val1 = data;);console.info($scope.val1); 실행순서 컨트롤러1에서 emit을 하면 컨트롤러2에서 on으로 데이터를 받아와서 사옹할 수 있음
For people who are using AngularUI Router. You can use something like this:StateNotice the reload option.Found the answer here: https://stackoverflow.com/a/29384813/426840 참고사이트https://stackoverflow.com/questions/11267284/angularjs-refresh-when-clicked-on-link-with-actual-url
createdRow 함수를 사용한다음에ng-click 같은 scope를 사용하고싶으면 아래에 추가로$compile(row)($scope)를 해줘야함 자세한 내용은 찾아보기
$scope.$on("$destroy", function () {// 이 안에 기술하면됩니다.});
guess you would like to pass it as a static value (string), put your value between quotes ' ': shareimprove this answer 홑따옴표로 해야됨..!! 참고사이트https://stackoverflow.com/questions/41890302/adding-parameters-to-ng-click-in-angular-js
안녕하세요 른록입니다.요새 새로운 기술들을 배우고 있습니다. 저도 제가 배우고 있는 기술들을 복습하기위해제가 시간이 될때마다 내용을 추가하여 포스팅 하도록 하겠습니다. 계획1.이론-AngularJs란?-RequireJs란?-AngularJs + Spring 구조-Slick Plugin이란?2.프로젝트진행-초기설정-게시판리스트-게시글작성-게시글수정,삭제 참고사이트[web] angularjs와 requirejs를 이용한 대규모 웹 프로젝트http://programmingsummaries.tistory.com/229