91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

flask sqlalchemy擴展包有什么用

發布時間:2021-12-17 15:09:20 來源:億速云 閱讀:179 作者:iii 欄目:大數據

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

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

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

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

    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參數不是數字就報 404,如果小于1也報 404, 沒有數據時也會報 404。 我在是寫 API 接口, 你給我報 404,太特么不厚道了。

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

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

向AI問一下細節

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

AI

嘉兴市| 伊川县| 西华县| 西乌珠穆沁旗| 濮阳市| 资源县| 盘锦市| 西畴县| 古田县| 华蓥市| 措勤县| 秦皇岛市| 陆川县| 盐津县| 泾源县| 金山区| 红安县| 乐业县| 合水县| 个旧市| 佛坪县| 延寿县| 抚宁县| 松原市| 太原市| 尼木县| 西平县| 高邑县| 华亭县| 太康县| 昌黎县| 玉溪市| 海宁市| 鸡泽县| 香格里拉县| 仪陇县| 井陉县| 驻马店市| 南宫市| 云阳县| 赤城县|