0
對於字段的Redux表單文檔(http://redux-form.com/6.5.0/docs/api/Field.md/),它表示應該有一個onChange屬性(props.input.onChange),但我的組件不提供任何此類財產。字段組件不提供'input.onChange'屬性
const customComponent = props => {
console.log(`input: ${JSON.stringify(props.input)}`);
return (
<Jsx ... />
);
};
//Using it:
<Field name="link_id" component={customComponent} />
這將打印input: {"name":"link_id","value":""}
是有什麼我做錯了什麼?