Typescript error: An outer value of 'this' is shadowed by this container

前端 未结 2 1276
北恋
北恋 2021-02-19 13:23

I had an error in a Typescript class method declaration, but I don\'t understand how the error message relates back to the bug.

The message seems to be saying that \'th

2条回答
  •  清酒与你
    2021-02-19 13:44

    Do it with arrow function on setTimeout

    setTimeout(() => {
      yourFunction()
    }, 3000);
    

提交回复
热议问题