當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Django QuerySet.using用法及代碼示例


本文介紹 django.db.models.query.QuerySet.using 的用法。

聲明

using(alias)

如果您使用多個數據庫,此方法用於控製將針對哪個數據庫評估 QuerySet。此方法采用的唯一參數是數據庫的別名,如 DATABASES 中所定義。

例如:

# queries the database with the 'default' alias.
>>> Entry.objects.all()

# queries the database with the 'backup' alias
>>> Entry.objects.using('backup')

相關用法


注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.db.models.query.QuerySet.using。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。