打字稿中的以下代码片段不能按我的意思工作。它应该是不言自明的:
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());
我怎样才能解决这个问题?