How to get the instance name of an object

后端 未结 7 1336
萌比男神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);
    

提交回复
热议问题