我有一个与此
类似的models.py
结构
class Entertainmentblog(models.Model):
slug = models.SlugField(max_length=100)
body = models.TextField()
posted = models.DateTimeField('date published')
img_url0 = models.CharField(max_length=100)
img_alt0 = models.CharField(max_length=100)
title1 = models.CharField(max_length=100)
def __unicode__(self):
return self.title
现在,如果我必须将其中一篇博文发布并在页面顶部显示为图像标头。
我该怎么做?
答案 0 :(得分:0)
执行查询然后将其编入索引,可能使用第0个索引。这将为基础查询添加LIMIT
子句。