当我使用ag-grid并一次反应钩子时出现错误。我可以解决这个问题吗? 我遇到“ gridApi.paginationGoToNextPage不是函数”之类的问题。
const onBtNext = () => {
setTestVar(5);//this is var that defined via react hook, if I not delete this, I will have error
gridApi.paginationGoToNextPage()
console.log(gridApi.paginationGetTotalPages())
}
如果我不使用react钩子,但是我需要的话,这段代码可以完美地工作