摘要: 一、first()和last() 分别返回queryset的第一项与最后一项,具体用法如下: p = Blog.objects.order_by('title').first() 等同于: try: p = Blog.objects.order_by('title')[0] except Index 阅读全文
posted @ 2019-12-21 21:39 hoo_o 阅读(5168) 评论(0) 推荐(1) 编辑