The problem of Form value in react antd rendering using map

after rendering form with map, the value of formvalue is found to be the same in all form.

data actually fetched:
{
name0:aaa,
name1:eee,
address0:bbb,
address1:fff,
}

desired effect:
{
name: aaa,
address: bbb,
}
{
name: eee,
address: fff,
}

Screenshot of the code below:

< hr >

clipboard.png

Mar.18,2021

this cannot be done. The fields in form must be unique. You can get the data in form and convert it to the format you need.

Menu