我在React-Admin的页面(资源)中有两个子组件。
第一个是搜索栏,第二个是用户列表(列表> Datagrid)。
第一个元素允许我在数据库中搜索以检索与此搜索相对应的用户列表。
<Fragment>
{/* Search component */}
<SearchComponent placeholder="Rechercher par prénom, nom, id, Adresse, ..." endPoint="USER_SEARCH" />
{/* Users list */}
<List title="Utilisateurs" {...this.props} bulkActionButtons={<PostBulkActionButtons />} >
<Datagrid>
<TextField source="firstname" label="Prénom" />
<TextField source="lastname" label="Nom" />
<TextField source="postal.firstLine" label="Adresse" />
<TextField source="postal.secondLine" label="Ville" />
</Datagrid>
</List>
</Fragment>
我的问题是我无法使用第一个组件请求检索的数据来更新第二个组件(因此用户列表[Datagrid])...