为了账号安全,请及时绑定邮箱和手机立即绑定

Date对象添加方法出错

Date对象添加方法出错

慕森卡 2018-10-10 17:18:52
interface Date{       completion():any     }Date.prototype.completion=function(time){        return time<10?'0'+time:time;       };报错completion does not exist on type date prototype ‘Date’
查看完整描述

1 回答

?
蛊毒传说

TA贡献1895条经验 获得超3个赞

你在接口里定义的 completion():any 是没有参数的,但是给 prototype.completion 赋值的那个函数是带一个参数的。

interface Date {
    completion(time:any): any}Date.prototype.completion = function (time) {    return time < 10 ? '0' + time : time;
};

通过,
Typescript 版本

$ tsc -v
Version 2.0.10


查看完整回答
反对 回复 2018-11-03
  • 1 回答
  • 0 关注
  • 499 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信