Django学习之Django shell
Posted frantz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django学习之Django shell相关的知识,希望对你有一定的参考价值。
Django shell交互式,方便调试,开发。
python manage.py shell
from blog.models import Article
a=Article()
a.title=‘title‘
a.brief_content=‘brief_content‘
a.content=‘content‘
a.save()
print (a)
articles=Article.objects.all()
article=articles[0]
print(article.title)
以上交互式命令可以从数据库存放查找字段。
以上是关于Django学习之Django shell的主要内容,如果未能解决你的问题,请参考以下文章