How to implement paging function in webpy_PHP tutorial
Paging is something you will definitely encounter when doing WEB development, but webpy does not have a built-in distribution class. You can only write a simple paging class by yourself. This article uses webpy (actually just a function of python) to implement a simple paging class...
How to paginate
In the past, paging and DB were often mixed together, such as the following PHP code:
<?php $page = get_current_page(); $start = $page*$step; $article_list = $db->all('select * from `xxx` limit $start,$step;'); $total = $db->get('select count(*) as `total` form `xxx`;'); //...pagination...
Such paging is obviously unscientific.
Things to note when paginating
- Paging classes should not be confused with
- Paging classes should not be confused with interfaces
- Paging classes should be independent and can be used in any situation
In order to meet the above three conditions, a simple paging class was designed (just an example, application to the project requires optimized code and strict inspection)
Paging class
Paging class code
class ProbbsPage: def __init__(self, total, per = 10): self.total = total self.per = per self.url = '' self.page = 1 def set_url(self,url): self.url = url return self def set_page(self,page): self.page = int(page) return self def show(self): if self.total%self.per == 0: pages = self.total/self.per else: pages = self.total/self.per+1 if self.page < 6: limit_s = 1 else: limit_s = self.page if pages < (limit_s+10): limit_e = pages else: limit_e = limit_s+10 pagination = '<span>%s/%s pages </span>'%(self.page,pages) for i in range(limit_s,limit_e+1): if i == self.page: pagination += '<a class="cur" href="javascript:void(0);">%s</a>'%(i,) else: pagination += '<a href="%s">%s</a>'%(self.url%i,i) return pagination
Paging class call example
pagination =ProbbsPage(总页数,每页数) url = 'your_page?page=%s'; page_html = pagination.set_url(url).set_page(page).show() print page_html #就可以显示出 #<span>当前页/共几页</span> #<a>页页链接</a>
Where the category page can be optimized
set_url can be automatically extracted based on the url, provided that commonly used forms such as "?Page parameter=what page" are used (it is not possible if I use a special unexpected form)
set_page is the same as above, and can be automatically Extract from the url
If you do the above two steps, you can directly ProbbsPage (total number of pages, number of each page).show(), which is relatively convenient
Article source: http://pjiaxu.com/python/48.html

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Tomato Novel is a very popular novel reading software. We often have new novels and comics to read in Tomato Novel. Every novel and comic is very interesting. Many friends also want to write novels. Earn pocket money and edit the content of the novel you want to write into text. So how do we write the novel in it? My friends don’t know, so let’s go to this site together. Let’s take some time to look at an introduction to how to write a novel. Share the Tomato novel tutorial on how to write a novel. 1. First open the Tomato free novel app on your mobile phone and click on Personal Center - Writer Center. 2. Jump to the Tomato Writer Assistant page - click on Create a new book at the end of the novel.

Unfortunately, people often delete certain contacts accidentally for some reasons. WeChat is a widely used social software. To help users solve this problem, this article will introduce how to retrieve deleted contacts in a simple way. 1. Understand the WeChat contact deletion mechanism. This provides us with the possibility to retrieve deleted contacts. The contact deletion mechanism in WeChat removes them from the address book, but does not delete them completely. 2. Use WeChat’s built-in “Contact Book Recovery” function. WeChat provides “Contact Book Recovery” to save time and energy. Users can quickly retrieve previously deleted contacts through this function. 3. Enter the WeChat settings page and click the lower right corner, open the WeChat application "Me" and click the settings icon in the upper right corner to enter the settings page.

This AI-assisted programming tool has unearthed a large number of useful AI-assisted programming tools in this stage of rapid AI development. AI-assisted programming tools can improve development efficiency, improve code quality, and reduce bug rates. They are important assistants in the modern software development process. Today Dayao will share with you 4 AI-assisted programming tools (and all support C# language). I hope it will be helpful to everyone. https://github.com/YSGStudyHards/DotNetGuide1.GitHubCopilotGitHubCopilot is an AI coding assistant that helps you write code faster and with less effort, so you can focus more on problem solving and collaboration. Git

Mobile games have become an integral part of people's lives with the development of technology. It has attracted the attention of many players with its cute dragon egg image and interesting hatching process, and one of the games that has attracted much attention is the mobile version of Dragon Egg. To help players better cultivate and grow their own dragons in the game, this article will introduce to you how to hatch dragon eggs in the mobile version. 1. Choose the appropriate type of dragon egg. Players need to carefully choose the type of dragon egg that they like and suit themselves, based on the different types of dragon egg attributes and abilities provided in the game. 2. Upgrade the level of the incubation machine. Players need to improve the level of the incubation machine by completing tasks and collecting props. The level of the incubation machine determines the hatching speed and hatching success rate. 3. Collect the resources required for hatching. Players need to be in the game

Setting font size has become an important personalization requirement as mobile phones become an important tool in people's daily lives. In order to meet the needs of different users, this article will introduce how to improve the mobile phone use experience and adjust the font size of the mobile phone through simple operations. Why do you need to adjust the font size of your mobile phone - Adjusting the font size can make the text clearer and easier to read - Suitable for the reading needs of users of different ages - Convenient for users with poor vision to use the font size setting function of the mobile phone system - How to enter the system settings interface - In Find and enter the "Display" option in the settings interface - find the "Font Size" option and adjust it. Adjust the font size with a third-party application - download and install an application that supports font size adjustment - open the application and enter the relevant settings interface - according to the individual

On March 3, 2022, less than a month after the birth of the world's first AI programmer Devin, the NLP team of Princeton University developed an open source AI programmer SWE-agent. It leverages the GPT-4 model to automatically resolve issues in GitHub repositories. SWE-agent's performance on the SWE-bench test set is similar to Devin, taking an average of 93 seconds and solving 12.29% of the problems. By interacting with a dedicated terminal, SWE-agent can open and search file contents, use automatic syntax checking, edit specific lines, and write and execute tests. (Note: The above content is a slight adjustment of the original content, but the key information in the original text is retained and does not exceed the specified word limit.) SWE-A

Go language development mobile application tutorial As the mobile application market continues to boom, more and more developers are beginning to explore how to use Go language to develop mobile applications. As a simple and efficient programming language, Go language has also shown strong potential in mobile application development. This article will introduce in detail how to use Go language to develop mobile applications, and attach specific code examples to help readers get started quickly and start developing their own mobile applications. 1. Preparation Before starting, we need to prepare the development environment and tools. head

The difference between Go language methods and functions lies in their association with structures: methods are associated with structures and are used to operate structure data or methods; functions are independent of types and are used to perform general operations.
