使用 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}`);
},