我想將自定義屬性傳遞給我的Redux-Form-Field。在本文檔中,它說:將自定義道具傳遞到TypeScript中的Redux Form字段
Any custom props passed to Field will be merged into the props object on the same level as the input and meta objects.
但通過自定義道具字段組件將拋出一個編譯錯誤:
<Field
name="E-Mail"
component={MaterialTextField}
myProp="Test"
/>
住宅「myProp」上類型不存在「(IntrinsicAttributes & IntrinsicClassAttributes> & ...
在props屬性中,我只能添加一組預定義的屬性,如placeholder或type。傳遞另一個prop會拋出這個錯誤:
<Field
name="E-Mail"
component={MaterialTextField}
props = {{
myProps: 'Test'
}}
/>
輸入'{name:「E-Mail」; component:(props:any)=> Element;道具:{myProps:string; }; }「不能分配到類型」(IntrinsicAttributes & ......
有沒有通過自定義道具字段部件在打字稿的可能性?
你有'redux-form'和'react-redux-form '但這些實際上是兩種不同的框架。你指的是哪一個? –
我的不好,我指的是redux-form。 – Deutro