Django的站点地图框架在lastmod上使用聚合最大函数时给出错误

时间:2017-12-07 02:12:19

标签: python django sitemap django-2.0

我试图使用Django的站点地图框架功能。我已经实现了代码,它适用于当前文章对象post_date。但是,我尝试使用以下代码获得更准确的最后修改日期,这给了我错误。回溯错误http://dpaste.com/3Z04VH8

的问候。 谢谢你的帮助

from django.contrib.sitemaps import Sitemap
from django.db.models import Max
from article.models import Article


class ArticleSitemap(Sitemap):
    changefreq = 'hourly'
    priority = 0.5

    def items(self):
        return Article.objects.all()

    def lastmod(self, obj):
        from post.models import Post
        return Post.objects.filter(article=obj).aggregate(Max('post_date'))
        #return obj.post_date

1 个答案:

答案 0 :(得分:1)

lastmod类中的Sitemap方法需要返回datetime个对象。相反,您将返回一个字典(这是aggregate将产生的字典) - 这是无效的。

您需要从该字典中获取数据并返回:

result = Post.objects.filter(article=obj).aggregate(Max('post_date'))
# result will look something like {'post_date__max': Datetime('2017-12-06')}
return result['post_date__max']