1. 程式人生 > >django 模糊查詢

django 模糊查詢

from django.shortcuts import render
from .models import Book
# Create your views here.
def index(req):
    books = Book.objects.filter(name__contains="python")
    return render(req,"index.html",{"books":books})

name__後面有很多模糊查詢的方法

同理,price欄位支援大於等於 小於等模糊查詢,日期支援查詢某月的某年的等查詢方法。