최신 웹 개발 튜토리얼
 

AngularJS NG-모델 옵션 지침


상기 필드가 포커스를 잃을 때까지 데이터 바인딩과 대기 :

<div ng-app="myApp" ng-controller="myCtrl">
    <input ng-model="name" ng-model-options="{updateOn: 'blur'}">
</div>

<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
    $scope.name = "John Doe";
});
</script>
»그것을 자신을 시도

정의 및 사용

ng-model-options 지시자는 HTML 폼 요소 및 범위에서 변수의 결합을 제어하기 위해 사용된다.

당신은 특정 이벤트가 밀리 초 단위로 특정 수의 발생, 또는 대기 기다려야 바인딩을 지정하고, 더 아래의 매개 변수 값에 나열된 정당한 값을 볼 수 있습니다.


통사론

< element ng-model-options=" option "></ element >

<입력>에서 지원, <선택> 및 <텍스트 영역> 요소입니다.


매개 변수 값

Value Description
option An object specifying what options the data-binding must follow. Legal objects are:

{updateOn: ' event '} specifies that the binding should happen when the specific event occur.

{debounce : 1000} specifies how many milliseconds to wait with the binding.

{allowInvalid : true|false} specify if the binding can happen if the value did not validate.

{getterSetter : true|false} specifies if functions bound to the model should be treated as getters/setters.

{timezone : '0100'} Specifies what timezone should be used when working with the Date object.