«ng-controller» 태그된 질문


10
Angularjs : '구문으로서의 컨트롤러'와 $ watch
controller as구문을 사용할 때 속성 변경을 구독하는 방법은 무엇입니까? controller('TestCtrl', function ($scope) { this.name = 'Max'; this.changeName = function () { this.name = new Date(); } // not working $scope.$watch("name",function(value){ console.log(value) }); }); <div ng-controller="TestCtrl as test"> <input type="text" ng-model="test.name" /> <a ng-click="test.changeName()" href="#">Change Name</a> </div>

4
AngularJS-컨트롤러에서 날짜 변환
누구 든지이 1387843200000형식의 날짜를 24/12/2013 컨트롤러 내부 에서 변환하는 방법을 제안 해 주 시겠습니까? 참고로 내 날짜는 이런 식으로 저장되며 input type="date"필드 를 사용하여 양식을 편집하는 바인딩 이 전혀 채워지지 않을 때. 여기 #Plunker 데모. 편집 Ctrl app.controller("EditCtrl", [ "$scope", "$filter", "db" function ($scope, $filter, db){ // this gets me …

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.