Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between ng-model and ng-model-instant AngularJS

What difference between ng-model and ng-model-instant? When I can use ng-model-instant and ng-model?

Could you give me any example?

Thanks.

like image 409
IFrizy Avatar asked Aug 01 '13 22:08

IFrizy


People also ask

What is the difference between ng-model and data NG model?

For AngularJS there is no difference between ng-app and data-ng-app or ng-controller and data-ng-controller or ng-model and data-ng-model because while compiling HTML page, AngularJS strips data- or x- prefix.

What is the difference between ng-model and Ng bind?

ngModel usually use for input tags for bind a variable that we can change variable from controller and html page but ngBind use for display a variable in html page and we can change variable just from controller and html just show variable. Save this answer.

What is the difference between ngValue and ngModel?

Also ngValue is a one-way binding, and ngModel is a two-way binding.

What is NG-model in AngularJS?

The ngModel directive is a directive that is used to bind the values of the HTML controls (input, select, and textarea) or any custom form controls, and stores the required user value in a variable and we can use that variable whenever we require that value. It also is used during form validations.


2 Answers

ng-model-instant was removed in one of the 1.0 release candidates, and ng-model now behaves that way. Before that 1.0 RC, ng-model-instant was triggered on every key press and ng-model on every blur. See the changelog.

like image 186
Steve Klösters Avatar answered Sep 28 '22 19:09

Steve Klösters


ng-model-instant is deprecated.

ngModelInstant directive is no more and ngModel behaves just as ngModelInstant used to. This doesn't really break anything, just remember to remove all ngModelInstant references from your template as they serve no purpose now.

From here.

It seems that from version 1.0.0rc4 and above ng-model-instant behave exactly like ng-model.

like image 44
Davin Tryon Avatar answered Sep 28 '22 19:09

Davin Tryon