如何从材料表中获取搜索结果并将其显示为PDF

时间:2019-08-29 10:19:01

标签: reactjs material-table

我在react中集成了物料表(参考:https://material-table.com/)。

我想使用jspdf将显示的数据(所有数据和搜索结果)导出为PDF。无法在材料表中得到它。

不幸的是,我无法获得所有数据以及搜索到的数据。

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

尝试从反应中useRef()

import {useRef} from "react";

const YourComponent = () => {
    const tableRef = useRef();

    console.log(tableRef.current.dataManager.data); // check proper field

    return <MaterialTable tableRef={tableRef} {...restProps} />;
}