|
The current project uses the spring and buffalo frameworks. The page turning page uses the PageHoldList class that comes with spring. That is, the data is first read out of the database at one time, wrapped with PageHoldList, and then placed in the session. page. In some pages that involve page turning, buffalo is used for modification. First, the modified content is put into the database with buffalo.remoteCall, and then the display content of the page is rewritten with javascript.
This will encounter a problem, modify the content of the current page and return to the page after turning the page, because the data is from the previous data into the session and not re-read from the database, so the display is in the session Data, not what was previously modified.
I don't know if you have encountered similar problems, are there any good solutions? ?
Thank you! |
|