ReactアプリケーションにReduxを追加したところ、コンソール。"警告:失敗したpropType: 'ReduxForm(MyForm)'に必須のprop 'fields'が指定されていません"
Warning: Failed propType: Required prop 'fields' was not specified in 'ReduxForm(MyForm)'. Check the render method of 'Connect(ReduxForm(MyForm))'.
と、この:
この第二は、この(2行目)を指しUncaught TypeError: Cannot read property 'reduce' of undefined
:
var getValues = function getValues(fields, state) {
return fields.reduce(function (accumulator, field) {
getValue(field, state, accumulator);
return accumulator;
}, {});
};
Upadte /回答: ていることを確認してくださいReduxの - 形式はバージョン6以上
フォームに小道具としてフィールドを渡していますか? – jacoballenwood
'@reduxForm({ 形式: 'some-id'、 フィールド:['one'、 'two'] })のフォームで使用するフィールドを定義する必要があります。 – elmeister
もっとコードが必要です。 –