摘要:
查: contains 包含,相当于sql的like条件 Entry.objects.get(headline__contains='Lennon') SQL equivalent: SELECT ... WHERE headline LIKE '%Lennon%'; 注意:contains区分大小 阅读全文
摘要:
增 (1)python manage.py shell 进入shell界面 (2)from app名 import models (3)创建对象 1.直接创建 models.Account.objects.create( username="wdcwdc", email='12314@qq.com' 阅读全文