TS常见错误

2016-03-30  本文已影响0人  Jalon
is not assignable to parameter of type 'obj...'  property 'size' is missing in type {...}

这里说了,说明接口里定义的属性,你没有传全,如果你想有的不传,可以设置可选值。

interface abc {
  name: string
  age?:number
}
上一篇 下一篇

猜你喜欢

热点阅读