真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

flask里實(shí)現(xiàn)分頁(yè)功能的方法

小編給大家分享一下flask里實(shí)現(xiàn)分頁(yè)功能的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

創(chuàng)新互聯(lián)專注于烏蘇企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站開發(fā),商城網(wǎng)站定制開發(fā)。烏蘇網(wǎng)站建設(shè)公司,為烏蘇等地區(qū)提供建站服務(wù)。全流程按需設(shè)計(jì),專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)

在web開發(fā)中,分頁(yè)是必不可少的功能,F(xiàn)lask實(shí)現(xiàn)展示內(nèi)容的分頁(yè)也非常簡(jiǎn)單,這里通過(guò)實(shí)例來(lái)學(xué)習(xí)一下Flask如何為網(wǎng)站分頁(yè)。

首先,自定義一個(gè)分頁(yè)工具類page_utils:

from urllib import urlencode
class Pagination(object):
    def __init__(self, current_page, total_count, base_url, params, per_page_count=10, max_pager_count=11):
        try:
            current_page = int(current_page)
        except Exception as e:
            current_page = 1
        if current_page <=0:
            current_page = 1
        self.current_page = current_page
        self.total_count = total_count
        self.per_page_count = per_page_count
        max_page_num, div = divmod(total_count, per_page_count)
        if div:
            max_page_num += 1
        self.max_page_num = max_page_num
        self.max_pager_count = max_pager_count
        self.half_max_pager_count = int((max_pager_count - 1) / 2)
        self.base_url = base_url
        import copy
        params = copy.deepcopy(params)
        get_dict = params.to_dict() 
        self.params = get_dict
    @property
    def start(self):
        return (self.current_page - 1) * self.per_page_count
    @property
    def end(self):
        return self.current_page * self.per_page_count 
    def page_html(self):
        if self.max_page_num <= self.max_pager_count:
            pager_start = 1
            pager_end = self.max_page_num
        # 如果總頁(yè)數(shù) > 11
        else:
            if self.current_page <= self.half_max_pager_count:
                pager_start = 1
                pager_end = self.max_pager_count
            else:
                if (self.current_page + self.half_max_pager_count) > self.max_page_num:
                    pager_end = self.max_page_num
                    pager_start = self.max_page_num - self.max_pager_count + 1   #倒這數(shù)11個(gè)
                else:
                    pager_start = self.current_page - self.half_max_pager_count
                    pager_end = self.current_page + self.half_max_pager_count
        page_html_list = []
        self.params['page'] = 1
        first_page = '
  • 首頁(yè)
  • '.decode("utf-8") % (self.base_url,urlencode(self.params),)         page_html_list.append(first_page)         self.params["page"] = self.current_page - 1         if self.params["page"] < 1:             pervious_page = '上一頁(yè)'.             decode("utf-8") % (self.base_url, urlencode(self.params))         else:             pervious_page = '
  • 上一頁(yè)
  • '.decode("utf-8") %              ( self.base_url, urlencode(self.params))         page_html_list.append(pervious_page)         # 中間頁(yè)碼         for i in range(pager_start, pager_end + 1):             self.params['page'] = i             if i == self.current_page:                 temp = '%s' % (self.base_url,urlencode(self.params), i,)             else:                 temp = '
  • %s
  • ' % (self.base_url,urlencode(self.params), i,)             page_html_list.append(temp)         self.params["page"] = self.current_page + 1         if self.params["page"] > self.max_page_num:             self.params["page"] = self.current_page             next_page = '下一頁(yè)'.decode             ("utf-8") % (self.base_url, urlencode(self.params))         else:             next_page = '
  • 下一頁(yè)
  • '.decode("utf-8") %              (self.base_url, urlencode(self.params))         page_html_list.append(next_page)         self.params['page'] = self.max_page_num         last_page = '
  • 尾頁(yè)
  • '.decode("utf-8") % (self.base_url, urlencode(self.params),)         page_html_list.append(last_page)         return ''.join(page_html_list)

    自定義方法中的參數(shù):

    current_page——表示當(dāng)前頁(yè)。

    total_count——表示數(shù)據(jù)總條數(shù)。

    base_url——表示分頁(yè)URL前綴,請(qǐng)求的前綴獲取可以通過(guò)Flask的request.path方法,無(wú)需自己指定。

    例如:我們的路由方法為@app.route('/test'),request.path方法即可獲取/test。

    params——表示請(qǐng)求傳入的數(shù)據(jù),params可以通過(guò)request.args動(dòng)態(tài)獲取。

    例如:我們鏈接點(diǎn)擊為:http://localhost:5000/test?page=10,此時(shí)request.args獲取數(shù)據(jù)為ImmutableMultiDict([('page', u'10')])

    per_page_count——指定每頁(yè)顯示數(shù)。

    max_pager_count——指定頁(yè)面最大顯示頁(yè)碼

    接著,我們使用一個(gè)測(cè)試方法來(lái)使用這個(gè)工具類,達(dá)到分頁(yè)效果,test.py:

    from flask import Flask, render_template, request
    from page_utils import Pagination
    app = Flask(__name__) 
    @app.route('/test')
    def test():
        li = []
        for i in range(1, 100):
            li.append(i)
        pager_obj = Pagination(request.args.get("page", 1), len(li), request.path, request.args, per_page_count=10)
        print(request.path)
        print(request.args)
        index_list = li[pager_obj.start:pager_obj.end]
        html = pager_obj.page_html()
        return render_template("obj/test.html", index_list=index_list, html=html)
    if __name__ == '__main__':
        app.run(debug=True)

    在上面的程序中,li為我們要分頁(yè)的對(duì)象,數(shù)組list,我們獲取到這個(gè)list之后,把他用工具類中的起止方法包起來(lái)。

    傳遞數(shù)據(jù)用包裝后的list,這樣就達(dá)到了需要哪一段數(shù)據(jù)我們傳遞哪一段的效果,包裝的方法:index_list = li[pager_obj.start:pager_obj.end]

    我們用一個(gè)HTML頁(yè)面去顯示它,分頁(yè)樣式不是重點(diǎn),我們這里直接引入bootstrap封裝好的分頁(yè)效果,代碼如下:

    
    
    
        
        Title
        
        
    
    
        
                             
                          {% for foo in index_list %}                         
    • {{ foo }}:這是列表內(nèi)容~~
    •                     {% endfor %}                 
                                         
                              {{ html|safe }}                     
                             
        

    這樣一個(gè)分頁(yè)的效果就做好了,我們查看效果,如下圖:

    flask里實(shí)現(xiàn)分頁(yè)功能的方法

    看完了這篇文章,相信你對(duì)flask里實(shí)現(xiàn)分頁(yè)功能的方法有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


    名稱欄目:flask里實(shí)現(xiàn)分頁(yè)功能的方法
    URL鏈接:http://weahome.cn/article/ijgsgo.html

    其他資訊

    在線咨詢

    微信咨詢

    電話咨詢

    028-86922220(工作日)

    18980820575(7×24)

    提交需求

    返回頂部