2
這裏是我的models.pydjango tsstypie。 ORDER_BY查詢集
class Picture(models.Model):
image = models.ImageField(upload_to='uploads/')
caption = models.CharField(max_length=140, null=True, blank=True)
uploaded = models.DateField()
comments = models.ManyToManyField(Comment, null=True, blank=True)
而且我tastypie的API資源,api.py:
class PictureResource(ModelResource):
class Meta:
queryset = Picture.objects.all.order_by('-uploaded')
resource_name = "photo"
authorization = Authorization()
API_LIMIT_PER_PAGE = 24
正如你看到的,我想爲了我的API頁面通過最新的圖像上傳。
我的錯誤代碼是:
函數對象有沒有屬性 'ORDER_BY'
由於平時我不知道該怎麼辦......
(順便說一句,API_LIMIT_PER_PAGE = 24
是否在正確的地點?)
你太棒了! – 2012-04-20 00:13:39
我很高興我幫助:) – 2012-04-20 13:54:17