溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

flask sqlalchemy擴展包有什么用

發(fā)布時間:2021-12-17 15:09:20 來源:億速云 閱讀:178 作者:iii 欄目:大數(shù)據(jù)

本篇內(nèi)容介紹了“flask sqlalchemy擴展包有什么用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

flask_sqlalchemy 擴展包對 ORM 框架 SQLAlchemy 進行了簡單封裝,對 Query對象封裝后支持分頁操作,就是 flask_sqlalchemy.BaseQuery.paginate 方法,傳入頁數(shù)和每頁大小就會返現(xiàn)對應的 Pagination 對象。例如:

pagination = Article.query.join(Account) \
       .filter(Article.status == 1) \
       .order_by(Article.published_at.desc()) \
       .paginate(page, per_page)

Pagination 對象里面有數(shù)據(jù),有數(shù)據(jù)總條數(shù)。這樣比自己實現(xiàn)分頁能節(jié)省幾行代碼,然后把代碼重構成用 paginate 后,遇到個詭異的問題。發(fā)現(xiàn)訪問帶分頁參數(shù)的 URL 報 404 了,一開始以為是我輸入的 URL 不正確,然后打印 url_map 里面值,對比沒有毛病。 我又嘗試 把 paginate 去掉,還原成原來的 limit 和 offset 方法來控制分頁,這樣又恢復正常了。這樣我確定是這個 paginate 方法搞的鬼,然后就找到里面的源碼,發(fā)現(xiàn)該方法有個error_out 參數(shù)

    def paginate(self, page=None, per_page=None, error_out=True, max_per_page=None):
       """Returns ``per_page`` items from page ``page``.

       If ``page`` or ``per_page`` are ``None``, they will be retrieved from
       the request query. If ``max_per_page`` is specified, ``per_page`` will
       be limited to that value. If there is no request or they aren't in the
       query, they default to 1 and 20 respectively.

       When ``error_out`` is ``True`` (default), the following rules will
       cause a 404 response:

       * No items are found and ``page`` is not 1.
       * ``page`` is less than 1, or ``per_page`` is negative.
       * ``page`` or ``per_page`` are not ints.

       When ``error_out`` is ``False``, ``page`` and ``per_page`` default to
       1 and 20 respectively.

       Returns a :class:`Pagination` object.

       """
       if request:
           if page is None:
               try:
                   page = int(request.args.get('page', 1))
               except (TypeError, ValueError):
                   if error_out:
                       abort(404)

                   page = 1

           if per_page is None:
               try:
                   per_page = int(request.args.get('per_page', 20))
               except (TypeError, ValueError):
                   if error_out:
                       abort(404)

                   per_page = 20
       else:
           if page is None:
               page = 1

           if per_page is None:
               per_page = 20

       if max_per_page is not None:
           per_page = min(per_page, max_per_page)

       if page < 1:
           if error_out:
               abort(404)
           else:
               page = 1

       if per_page < 0:
           if error_out:
               abort(404)
           else:
               per_page = 20

       items = self.limit(per_page).offset((page - 1) * per_page).all()

       if not items and page != 1 and error_out:
           abort(404)

error_out 默認值為 True,這段代碼的意思就是任何異常行為都會導致 404 響應,比如你傳入的page參數(shù)不是數(shù)字就報 404,如果小于1也報 404, 沒有數(shù)據(jù)時也會報 404。 我在是寫 API 接口, 你給我報 404,太特么不厚道了。

作為一個第三方庫,默認給開發(fā)者做決定個人認為并不妥當,因為你的本意可能是 dont make me think, 反而讓我陷入了沉思,因為我不知道為什么報 404,看不到任何堆棧日志,更合理的方式應該是用異常的方式告知開發(fā)者。這樣我就知道怎么去修改參數(shù)來返回期望的結果。其實,這跟產(chǎn)品經(jīng)理設計產(chǎn)品是一樣的道理,對最終用戶我們有必要隱藏所有的技術細節(jié),任何錯誤日志都不應該展示給用戶,因為用戶看不懂,也不需要讓它看懂。而錯誤日志對開發(fā)者來說卻至關重要,如果把這些日志也給我隱藏了,我不得不去深入源碼里面找原因。

“flask sqlalchemy擴展包有什么用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI