溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

在django中查詢(xún)獲取數(shù)據(jù)時(shí)get, filter,all(),values()的操作方法是什么

發(fā)布時(shí)間:2020-08-10 09:19:41 來(lái)源:億速云 閱讀:295 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹在django中查詢(xún)獲取數(shù)據(jù)時(shí)get, filter,all(),values()的操作方法是什么,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

django 中當(dāng)我們要查詢(xún)獲取數(shù)據(jù)時(shí):

數(shù)據(jù)庫(kù)中的信息:

如一個(gè)學(xué)生信息表 students:

get方法:

students.objects().get(a = b)

其中a為students表中的一個(gè)屬性如id,name 等

如:students.objects().get(name = ‘張三') 即獲取name為張三的學(xué)生的信息

filter 用法與get相同

但是get必須只能取一個(gè)數(shù)據(jù)

filter 能去0,1,多個(gè)數(shù)據(jù)

即上述中如果表中有多個(gè)學(xué)生都叫張三同名了,get就會(huì)報(bào)錯(cuò)

同樣表中沒(méi)有叫張三的學(xué)生也會(huì)報(bào)錯(cuò)

filter則不報(bào)錯(cuò),所以在要精準(zhǔn)查詢(xún)時(shí)用get

students.objects().all() 是獲取表中所有的數(shù)據(jù)

values(a)屬性可以加在上述三個(gè)的末尾,表示只獲取a屬性:

students.objects().all().values('name')即獲取到所有的表中的姓名,返回一個(gè)字典組成的列表[{‘name':‘張三'},{‘name':‘李四'},。。。]

students.objects().filter(name = ‘張三').values('id'), 只返回名為張三的學(xué)生的id,不返回其他屬性了。

補(bǔ)充知識(shí):django filter過(guò)濾器實(shí)現(xiàn)顯示某個(gè)類(lèi)型指定字段不同值

1,前端樣式

在django中查詢(xún)獲取數(shù)據(jù)時(shí)get, filter,all(),values()的操作方法是什么

2,html代碼

{% load asset_filter %}

<div class="col-sm-2">
  <select class="input-sm form-control select2 inline" name="ServiceModel">
    <option value="">模塊</option>
    {% for i in 'Ecs'|ecs_model_field_distinct:'ServiceModel' %}
      {% if i.0 %}
        <option value="{{ i.0 }}">{{ i.0 }}</option>
      {% endif %}
    {% endfor %}
  </select>
</div>

3,后端代碼

asset_filter.py 內(nèi)容如下:

@register.filter(name='ecs_model_field_distinct')
def ecs_model_field_distinct(model_name, field_name):
  '''
  獲取model_name模塊對(duì)象的某個(gè)屬性field_name的distinct值,返回值的數(shù)組
  :param model_name:
  :param field_name:
  :return:
  '''
  asset_app = apps.get_app_config('rule')
  return asset_app.get_model(model_name).objects.all().values_list(field_name).distinct()

以上是在django中查詢(xún)獲取數(shù)據(jù)時(shí)get, filter,all(),values()的操作方法是什么的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

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

AI