How to get the instance name of an object

后端 未结 7 1326
萌比男神i
萌比男神i 2021-01-15 00:07

I use the below code to write code to query a web method in a specified interval.

now in the this.Poll function I have to do

this.tmo = setTimeo         


        
相关标签:
7条回答
  • 2021-01-15 00:45
    var self = this;
    this.tmo = setTimeout(function(){
         self.Poll();
    }, this.iInterval);
    
    0 讨论(0)
提交回复
热议问题