本篇內(nèi)容介紹了“flask sqlalchemy擴(kuò)展包有什么用”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
創(chuàng)新互聯(lián)公司致力于互聯(lián)網(wǎng)品牌建設(shè)與網(wǎng)絡(luò)營(yíng)銷,包括成都做網(wǎng)站、網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設(shè)、SEO優(yōu)化、網(wǎng)絡(luò)推廣、整站優(yōu)化營(yíng)銷策劃推廣、電子商務(wù)、移動(dòng)互聯(lián)網(wǎng)營(yíng)銷等。創(chuàng)新互聯(lián)公司為不同類型的客戶提供良好的互聯(lián)網(wǎng)應(yīng)用定制及解決方案,創(chuàng)新互聯(lián)公司核心團(tuán)隊(duì)十多年專注互聯(lián)網(wǎng)開(kāi)發(fā),積累了豐富的網(wǎng)站經(jīng)驗(yàn),為廣大企業(yè)客戶提供一站式企業(yè)網(wǎng)站建設(shè)服務(wù),在網(wǎng)站建設(shè)行業(yè)內(nèi)樹(shù)立了良好口碑。
flask_sqlalchemy 擴(kuò)展包對(duì) ORM 框架 SQLAlchemy 進(jìn)行了簡(jiǎn)單封裝,對(duì) Query對(duì)象封裝后支持分頁(yè)操作,就是 flask_sqlalchemy.BaseQuery.paginate 方法,傳入頁(yè)數(shù)和每頁(yè)大小就會(huì)返現(xiàn)對(duì)應(yīng)的 Pagination 對(duì)象。例如:
pagination = Article.query.join(Account) \
.filter(Article.status == 1) \
.order_by(Article.published_at.desc()) \
.paginate(page, per_page)
Pagination 對(duì)象里面有數(shù)據(jù),有數(shù)據(jù)總條數(shù)。這樣比自己實(shí)現(xiàn)分頁(yè)能節(jié)省幾行代碼,然后把代碼重構(gòu)成用 paginate 后,遇到個(gè)詭異的問(wèn)題。發(fā)現(xiàn)訪問(wèn)帶分頁(yè)參數(shù)的 URL 報(bào) 404 了,一開(kāi)始以為是我輸入的 URL 不正確,然后打印 url_map 里面值,對(duì)比沒(méi)有毛病。 我又嘗試 把 paginate 去掉,還原成原來(lái)的 limit 和 offset 方法來(lái)控制分頁(yè),這樣又恢復(fù)正常了。這樣我確定是這個(gè) paginate 方法搞的鬼,然后就找到里面的源碼,發(fā)現(xiàn)該方法有個(gè)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 默認(rèn)值為 True,這段代碼的意思就是任何異常行為都會(huì)導(dǎo)致 404 響應(yīng),比如你傳入的page參數(shù)不是數(shù)字就報(bào) 404,如果小于1也報(bào) 404, 沒(méi)有數(shù)據(jù)時(shí)也會(huì)報(bào) 404。 我在是寫(xiě) API 接口, 你給我報(bào) 404,太特么不厚道了。
作為一個(gè)第三方庫(kù),默認(rèn)給開(kāi)發(fā)者做決定個(gè)人認(rèn)為并不妥當(dāng),因?yàn)槟愕谋疽饪赡苁?dont make me think, 反而讓我陷入了沉思,因?yàn)槲也恢罏槭裁磮?bào) 404,看不到任何堆棧日志,更合理的方式應(yīng)該是用異常的方式告知開(kāi)發(fā)者。這樣我就知道怎么去修改參數(shù)來(lái)返回期望的結(jié)果。其實(shí),這跟產(chǎn)品經(jīng)理設(shè)計(jì)產(chǎn)品是一樣的道理,對(duì)最終用戶我們有必要隱藏所有的技術(shù)細(xì)節(jié),任何錯(cuò)誤日志都不應(yīng)該展示給用戶,因?yàn)橛脩艨床欢膊恍枰屗炊?。而錯(cuò)誤日志對(duì)開(kāi)發(fā)者來(lái)說(shuō)卻至關(guān)重要,如果把這些日志也給我隱藏了,我不得不去深入源碼里面找原因。
“flask sqlalchemy擴(kuò)展包有什么用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
網(wǎng)頁(yè)名稱:flasksqlalchemy擴(kuò)展包有什么用
鏈接URL:http://jinyejixie.com/article40/pdsoeo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供域名注冊(cè)、關(guān)鍵詞優(yōu)化、移動(dòng)網(wǎng)站建設(shè)、用戶體驗(yàn)、全網(wǎng)營(yíng)銷推廣、面包屑導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)