3

打字稿中的以下代码片段不能按我的意思工作。它应该是不言自明的:

declare interface Date {
    toUrlString(): string;
}

Date.prototype.toUrlString = () => {
    return this.toISOString().substring(0, 10);
};

document.write(
    new Date().toUrlString()
    // Error: Object [object Window] has no method 'toISOString'
);

编译后的代码是:

var _this = this;
Date.prototype.toUrlString = function () {
    return _this.toISOString().substring(0, 10);
};
document.write(new Date().toUrlString());

我怎样才能解决这个问题?

4

1 回答 1

5

=>胖箭头”表示法调用词法范围规则。如果您不想这样做,请使用传统功能:

Date.prototype.toUrlString = function() {
    return this.toISOString().substring(0, 10);
};
于 2013-01-31T01:14:59.583 回答