我正在使用formik传递字段作为formik中的对象数组来渲染表单
此字段将映射下拉字段
let test = '';
field: [{
label: "First Name:",
name: "given_name",
type: "text",
config: {
validator: "required",
component: "dropdownfield",
testfunc: async function (element) {
test = element;
}
}
},
{
label: `{$test}`,
name: "gen_name",
type: "text",
config: {
validator: "required",
}
}]
我希望第二个字段的名称是从第一个字段的回调函数获得的值。我感谢与任何示例或解决方案的链接。简而言之,我必须使用原始字段来处理已经渲染过一次的表单。