我在react中集成了物料表(参考:https://material-table.com/)。
我想使用jspdf
将显示的数据(所有数据和搜索结果)导出为PDF。无法在材料表中得到它。
不幸的是,我无法获得所有数据以及搜索到的数据。
有人可以帮忙吗?
答案 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} />;
}