如何从另一个组件更新数据网格(在react admin下)?

时间:2019-01-21 09:39:03

标签: javascript reactjs datagrid reactive-programming react-admin

我在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])...

0 个答案:

没有答案