4
Reply

What is 2 way data binding in Angular Js?

Manoj Kalla

Manoj Kalla

Oct 04, 2017
454
0

    In two way data binding data flows from "Scope/Controller" to "View/Markup" and vice varsa. in Scope data gets propagated to view and data modification propagated immediately and reflected in view. In view data gets propagated to scope and data modification propagated immediately and reflected in scope. usually performed through "ng-nodel"

    Sandeep Jamkar
    January 05, 2018
    1

    Two-way data binding combines the property and event binding into a single notation using the ngModel directive.We can achieve it by using following wayEx : What this is doing behind the scenes is equivalent to -Ex :

    Suresh Kumar
    November 08, 2017
    1

    ngmodel and interpolation

    Niraj Sharma
    November 03, 2017
    0

    Update Model when View get change and vice versa. Synchronization between the model and the view.

    Manoj Kalla
    October 04, 2017
    0