我正在使用TantStack和React Table库构建一个表。我想在页脚中显示当前的页面索引,类似于“第1页,共8页”,其中“1”表示当前页码,“8”表示总页数。我在弄清楚如何从TantStack表状态访问当前页索引时遇到了麻烦。
它应该放在这些按钮之间:
<Button
variant="outline"
size="sm"
onClick={() => table.previousPage()}
disabled={!table.getCanPreviousPage()}
>
Previous
</Button>
<Button
variant="outline"
size="sm"
onClick={() => table.nextPage()}
disabled={!table.getCanNextPage()}
>
Next
</Button>
字符串
1条答案
按热度按时间6l7fqoea1#
您需要将页面索引存储在状态变量中,并将setState方法传递给tanstack table以设置当前页面索引。您可以尝试以下代码:
字符串