最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

django組合搜索實(shí)現(xiàn)過程詳解(附代碼)

 更新時(shí)間:2019年08月06日 14:31:50   作者:Maple_feng  
這篇文章主要介紹了django組合搜索實(shí)現(xiàn)過程詳解(附代碼),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

一.簡介

  • # 組合搜索
  • # 技術(shù)方向:自動(dòng)化,測試,運(yùn)維,前端
  • # 分類:Python Linux JavaScript OpenStack Node.js GO
  • # 級(jí)別:初級(jí) 中級(jí) 高級(jí) 骨灰級(jí)

有4張表:

Direction(技術(shù)方向標(biāo)),Classification(技術(shù)分類表),Level(難度級(jí)別表),Video(視頻表)

它們的關(guān)系是:

Direction與Classification多對(duì)多關(guān)系

Video與Classification,Level是一對(duì)多關(guān)系

最終要實(shí)現(xiàn)的結(jié)果如下圖:

二.models代碼

class Direction(models.Model):
  """
  技術(shù)方向:自動(dòng)化,測試,運(yùn)維,前端
  """
  name = models.CharField(verbose_name='名稱', max_length=32)
  classification = models.ManyToManyField('Classification')

  class Meta:
    # 重命名表名,不要自動(dòng)添加的app名
    db_table = 'Direction'
    verbose_name_plural = '方向(視頻方向)'
  def __str__(self):
    return self.name
class Classification(models.Model):
  """
  分類:Python Linux JavaScript OpenStack Node.js GO
  """
  name = models.CharField(verbose_name='名稱', max_length=32)
  class Meta:
    db_table = 'Classification'
    verbose_name_plural = '分類(視頻分類)'

  def __str__(self):
    return self.name
class Level(models.Model):
  title = models.CharField(max_length=32)

  class Meta:
    db_table = 'Level'
    verbose_name_plural = '難度級(jí)別'

  def __str__(self):
    return self.title
class Video(models.Model):
  status_choice = (
    (1, '下線'),
    (2, '上線'),
  )
  status = models.IntegerField(verbose_name='狀態(tài)', choices=status_choice, default=1)
  level = models.ForeignKey(Level)
  classification = models.ForeignKey('Classification', null=True, blank=True)
  weight = models.IntegerField(verbose_name='權(quán)重(按從大到小排列)', default=0)
  title = models.CharField(verbose_name='標(biāo)題', max_length=32)
  summary = models.CharField(verbose_name='簡介', max_length=32)
  # img = models.ImageField(verbose_name='圖片', upload_to='./static/images/Video/')
  img = models.CharField(verbose_name='圖片', max_length=32)
  href = models.CharField(verbose_name='視頻地址', max_length=256)
  create_date = models.DateTimeField(auto_now_add=True)
  class Meta:
    db_table = 'Video'
    verbose_name_plural = '視頻'
  def __str__(self):
    return self.title

三.url路由代碼

urlpatterns=[
  url(r'^admin',admin.site.urls),
  #利用的是有名分組的方法,分別獲取不同的id
  url(r'^video-(?P<direction_id>(\d+))-(?P<classification_id>(\d+))-(?P<level_id>(\d+)).html$', views.video,
    name='video')
]

四.視圖代碼

def video(request,*args,**kwargs):
  condition = {}
  for k, v in kwargs.items():
    temp = int(v)
    kwargs[k] = temp
  print(kwargs) # (?P<direction_id>(\d+))-(?P<classification_id>(\d+))-(?P<level_id>(\d+))
  # 構(gòu)造查詢字典
  direction_id = kwargs.get('direction_id')
  classification_id = kwargs.get('classification_id')
  level_id = kwargs.get('level_id')
  # 獲取所有的技術(shù)方向
  direction_list = models.Direction.objects.all()
  # 當(dāng)沒有選擇技術(shù)方向時(shí),就獲取所有分類
  if direction_id == 0:
    class_list = models.Classification.objects.all()
    # 當(dāng)沒有選擇分類時(shí),不做什么
    if classification_id == 0:
      pass
    else:
      # 否則就將分類id放入字典
      condition['classification_id'] = classification_id
  else:
    # 當(dāng)選擇了技術(shù)方向id時(shí),查詢出該技術(shù)方向下的所有分類
    direction_obj = models.Direction.objects.filter(id=direction_id).first()
    class_list = direction_obj.classification.all()
    # 只獲取該方向下的分類id
    vlist = direction_obj.classification.all().values_list('id')
    # 下面的代碼為了生成condition是傳入的一對(duì)多查詢id,如:{'classification_id__in': (1, 2, 3), 'level_id': 1}
    if not vlist:
      classification_id_list = []
    else:
      # 將vlist轉(zhuǎn)換成列表
      classification_id_list = list(zip(*vlist))[0]
    if classification_id == 0:
      condition['classification_id__in'] = classification_id_list
    else:
      if classification_id in classification_id_list:
        condition['classification_id'] = classification_id
      else:
        #指定技術(shù)方向:[1,2,3]  分類:5
        kwargs['classification_id'] = 0
        condition['classification_id__in'] = classification_id_list

  if level_id == 0:
    pass
  else:
    condition['level_id'] = level_id
  level_list = models.Level.objects.all()
  video_list = models.Video.objects.filter(**condition)
  # 技術(shù)方向的queryset對(duì)象列表
  print(direction_list)
  # 分類的queryset對(duì)象列表
  print(class_list)
  # 等級(jí)的queryset對(duì)象列表
  print(level_list)
  # video的queryset對(duì)象列表
  print(video_list)
  # 技術(shù)方向的id,分類的id,等級(jí)的id組成的字典
  print(kwargs)
  return render(
    request,
    'video.html',
    {
      'direction_list':direction_list,
      'class_list':class_list,
      'level_list':level_list,
      'video_list':video_list,
      'kwargs':kwargs,
    }
  )

五.模板代碼

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
  <style>
    .condition a {
      display: inline-block;
      padding: 5px 8px;
      border: 1px solid #dddddd;
    }
    .condition a.active {
      background-color: coral;
      color: white;
    }
  </style>
</head>
<body>
<div class="condition">
  <h1>篩選</h1>
  <div>
    {% if kwargs.direction_id == 0 %}
      {#反向解析#}
      <a href="{% url " rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" video" direction_id=0 classification_id=kwargs.classification_id level_id=kwargs.level_id %}"
        class="active">全部</a>
    {% else %}
      <a href="{% url " rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" video" direction_id=0 classification_id=kwargs.classification_id level_id=kwargs.level_id %}">全部</a>
    {% endif %}
    {% for item in direction_list %}
      {% if item.id == kwargs.direction_id %}
        <a href="{% url " rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" video" direction_id=item.id classification_id=kwargs.classification_id level_id=kwargs.level_id %}"
          class="active">{{ item.name }}</a>
      {% else %}
        <a href="{% url " rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" video" direction_id=item.id classification_id=kwargs.classification_id level_id=kwargs.level_id %}">{{ item.name }}</a>
      {% endif %}
    {% endfor %}
  </div>
  <div>
    {% if kwargs.classification_id == 0 %}
      <a href="/video-{{ kwargs.direction_id }}-0-{{ kwargs.level_id }}.html" rel="external nofollow" rel="external nofollow" class="active">全部</a>
    {% else %}
      <a href="/video-{{ kwargs.direction_id }}-0-{{ kwargs.level_id }}.html" rel="external nofollow" rel="external nofollow" >全部</a>
    {% endif %}
    {% for item in class_list %}
      {% if item.id == kwargs.classification_id %}
        <a href="/video-{{ kwargs.direction_id }}-{{ item.id }}-{{ kwargs.level_id }}.html" rel="external nofollow" rel="external nofollow" 
          class="active">{{ item.name }}</a>
      {% else %}
        <a href="/video-{{ kwargs.direction_id }}-{{ item.id }}-{{ kwargs.level_id }}.html" rel="external nofollow" rel="external nofollow" >{{ item.name }}</a>
      {% endif %}
    {% endfor %}
  </div>
  <div>
    {% if kwargs.level_id == 0 %}
      <a href="/video-{{ kwargs.direction_id }}-{{ kwargs.classification_id }}-0.html" rel="external nofollow" rel="external nofollow" class="active">全部</a>
    {% else %}
      <a href="/video-{{ kwargs.direction_id }}-{{ kwargs.classification_id }}-0.html" rel="external nofollow" rel="external nofollow" >全部</a>
    {% endif %}
    {% for item in level_list %}
      {% if item.id == kwargs.level_id %}
        <a href="/video-{{ kwargs.direction_id }}-{{ kwargs.classification_id }}-{{ item.id }}.html" rel="external nofollow" rel="external nofollow" 
          class="active">{{ item.title }}</a>
      {% else %}
        <a href="/video-{{ kwargs.direction_id }}-{{ kwargs.classification_id }}-{{ item.id }}.html" rel="external nofollow" rel="external nofollow" >{{ item.title }}</a>
      {% endif %}
    {% endfor %}
  </div>
</div>
<div>
  <h1>結(jié)果</h1>
  {% for row in video_list %}
    <div>{{ row.title }}</div>
  {% endfor %}
</div>
</body>
</html>

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論

黔东| 嵊州市| 永平县| 时尚| 施秉县| 永吉县| 汉川市| 朝阳县| 闵行区| 乡城县| 巴楚县| 新源县| 望江县| 武宁县| 得荣县| 茂名市| 班玛县| 隆尧县| 古浪县| 吐鲁番市| 大庆市| 兴和县| 太原市| 福贡县| 双峰县| 长沙县| 石城县| 长治县| 石阡县| 洮南市| 美姑县| 拉孜县| 辽阳市| 保靖县| 波密县| 饶阳县| 石首市| 林口县| 平度市| 西林县| 保德县|