1 回答
TA贡献1788条经验 获得超4个赞
我找到了解决这个问题的方法。也许不是最好的,如果你知道更好的方法,请告诉我。目前,我已经通过以下方式解决了这个问题:
# Creating a cursor
cur = conn.cursor()
# Setting page, limit and offset variables
per_page = 4
page = request.args.get(get_page_parameter(), type=int, default=1)
offset = (page - 1) * per_page
# Executing a query to get the total number of products
cur.execute("SELECT * FROM products")
total = cur.fetchall()
# Executing a query with LIMIT and OFFSET provided by the variables above
cur.execute("SELECT * FROM products ORDER BY added_on DESC LIMIT %s OFFSET %s", (per_page, offset))
products = cur.fetchall()
# Closing cursor
cur.close()
...
# Setting up the pagination variable, where you are using len(total) to set the total number of
# items available
pagination = Pagination(page=page, per_page=per_page, offset=offset, total=len(total),
record_name='products')
# Render template, where you pass "products" variable
# for the prepared query with LIMIT and OFFSET, and passing "pagination" variable as well.
return render_template('products.html', form=form, products=products, pagination=pagination)
添加回答
举报