标签: debugging visual-studio-2013 typescript
为什么在Visual Studio 2013中调试时,Typescript中的属性/字段变量总是未定义的?
答案 0 :(得分:3)
您最有可能在箭头功能内部进行调试,其中 this 在运行时变为 _this 。
this
_this
所以,只需在观看中使用 _this.MyProperty
_this.MyProperty
详细了解Arrow Functions here