我在 TypeScript 中写了这样的对象字面量:
var object = {
message: "Say",
say: () => {
return this.message;
}
};
我得到了这样生成的 JavaScript:
var object = {
message: "Say",
say: function () {
return _this.message;
}
};
在 return 语句之前不应该有这样的行:
var _that = this;
当我使用箭头函数表达式时?