Why should it be placed in the session? Just display it directly after checking out each page. There is no need to put it in the session Up to the current page can be placed in the session
That’s not what the session is for. The session stores some global things. Putting too many things will have a great impact on the server. Pagination is passed directly to the background in the request.
Why is this stored in the session? It should be placed in the request, and then placed on the page. Submit it next time
If you have to do that, just reset the paging information in the session to 1 when changing the query conditions
Why should it be placed in the session? Just display it directly after checking out each page. There is no need to put it in the session
Up to the current page can be placed in the session
That’s not what the session is for. The session stores some global things. Putting too many things will have a great impact on the server. Pagination is passed directly to the background in the request.