开发者

Best way to implement <next>, <prev> element links from search list

In my web application I got a search results list (SR). The sear开发者_如何学Pythonch is heavily parametrized. Each element on the list can be clicked and then the element's own page (EP) is displayed.

Now, the customer wants to have the ability to go to previous and next element from the search list that was used to enter the element page.

How would you implement this? I can either pass the search conditions to the EP and the element's index on the list, then prev/next would just mean to rerun the search query, get previous / next index and display it (still passing the conditions and new index).

Or is there a better approach?


How intensive is your search process? It sounds like something you don't want to execute anymore than necessary. What if you when you render the search results you also store in a list the unqiue EP IDs on the server. You can then navigate through that using indexes for prev/next and the unique ID of the EP element to load details? You can then also store the query term and repopulate the search results with a 'Back to Search' link?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜