Answers for "settimeout this angualr"

7

settimeout in angular

// var that = this;                             // no need of this line
this.messageSuccess = true;

setTimeout(()=>{                           //<<<---using ()=> syntax
      this.messageSuccess = false;
 }, 3000);
Posted by: Guest on September-19-2020
2

timeout angularjs

var myapp = angular.module("myapp", []);

myapp.controller("DIController", function($scope, $timeout){

    $scope.callAtTimeout = function() {
        console.log("$scope.callAtTimeout - Timeout occurred");
    }

    $timeout( function(){ $scope.callAtTimeout(); }, 3000);
});
Posted by: Guest on November-15-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language