Open xmsz-stu opened 6 months ago
这个问题仔细想了一下,这里如果使用泛型并符合 TS 中关于函数泛型的推荐范式,即至少有两处使用到该类型时才使用。这里如果希望约束 value 的类型,我觉得更好的方式是 setValue 时 as Type
as type会遇到多传的情况 type A = {a:number} setState({a:1,b:2} as A) // 是能通过的,但是实际上不想通过,因为有可能这个属性有副作用
有道理
你好,该 issue 已 30 天没有活动,因此被标记为 stale,如果之后的 7 天仍然没有活动,该 issue 将被自动关闭
Component
Field
Feature Description
希望支持
我看之前是支持的,后面又去掉了 支持这个的好处就是我可以约束和提示值,不然不好检查