在VS 2013中进行调试时,始终未定义Typescript变量/字段

时间:2016-01-06 06:37:22

标签: debugging visual-studio-2013 typescript

为什么在Visual Studio 2013中调试时,Typescript中的属性/字段变量总是未定义的?

1 个答案:

答案 0 :(得分:3)

您最有可能在箭头功能内部进行调试,其中 this 在运行时变为 _this

所以,只需在观看中使用 _this.MyProperty

详细了解Arrow Functions here