--@angularJS--$scope. Watch Monitor model changes

Source: Internet
Author: User

$watch Simple to use

$watch is a scope function that listens for model changes and notifies you when the part of your model changes.

$watch (watchexpression, Listener, objectequality);

The description of each parameter is as follows:

  1. Watchexpression: The Listener object, which can be a angular expression such as ' name ', or function such as functions () {return $scope. Name}.

  2. Listener: The function or expression that will be called when watchexpression changes, it receives 3 parameters: NewValue (new value), OldValue (old value), scope (scope reference);

  3. Objectequality is a Boolean parameter, and if set to True, this optional boolean parameter will command angular to check whether each property of the monitored object has changed. You can use this parameter if you want to monitor an element in an array, or all of the properties on an object, rather than just monitoring a simple value. Because angular need to traverse arrays or objects, if the collection is larger, the computational burden will be heavier.

    $watch function returns a function that, when you no longer need to receive change notifications, can unregister the monitor with the returned function.

    If we need to monitor a property and then unregister the monitor, we can use the following code:
    ...
    var dereg = $scope. $watch (' Somemodel.someproperty ', Callbackonchange ());
    ...
    Dereg ();

[email protected]$scope. Watch Monitor model changes

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.