“Settimeout в угловой” Ответ

Settimeout в угловой

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

setTimeout(()=>{                           //<<<---using ()=> syntax
      this.messageSuccess = false;
 }, 3000);
Tired Tapir

запустить функцию JS после некоторой секунды

function myClick() {
  setTimeout(
    function() {
      document.getElementById('div1').style.display='none';
      document.getElementById('div2').style.display='none';
    }, 5000);
}
Panicky Pollan

Тайм -аут 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);
});
Frightened Fowl

Угловая функция тайм -аута

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

setTimeout(()=>{                           // <<<---using ()=> syntax
    this.messageSuccess = false;
}, 3000);
Tiny Coders

Ответы похожие на “Settimeout в угловой”

Вопросы похожие на “Settimeout в угловой”

Больше похожих ответов на “Settimeout в угловой” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования