我有以下简单的代码:
function DataSet() {
this.foo = 'foo';
this.bar = 'bar';
}
DataSet.prototype.getDataSetProps = function() {
return Object.keys(this);
};
我的IDE使用错误类型警告消息强调this
参数:
参数类型DataSet不能分配给参数类型{}
我已经检查了this
的类型 - 它是Object
。有人可以向我解释一下吗?