1

使用 React-Final-Form,我正在创建一个控件,如果单击单选按钮,则允许用户在目录中列出。在单击处理程序中,我希望使用用户的名字和姓氏自动填充一个文本框。我正在使用 mutator 执行此操作,我希望能够确认我正在正确执行此操作,因为我找不到有关lastFieldState我正在利用的属性的文档:

  setDisplayName: (args, state, utils) => {
  const { firstname, lastname } = state.fields;
  const currentFirstName = firstname.lastFieldState.value;
  const currentLastName = lastname.lastFieldState.value;
  utils.changeValue(state, 'displayName', () => `${currentFirstName} ${currentLastName}`);
},
4

1 回答 1

1

图书馆的作者在这里。我可以确认你做得很好。

于 2018-06-26T10:55:12.033 回答