大家好,又见面了,我是你们的朋友全栈君。
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字段支持大于等于 小于等模糊查询,日期支持查询某月的某年的等查询方法。
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/142606.html原文链接:https://javaforall.cn