我正在使用django feed框架。這是我在我的feeds.py:Django feed框架:tzinfo錯誤
def item_pubdate(self, item):
return item.posted
這是我在我的博客類models.py:
posted = models.DateField(db_index=True, auto_now_add=True)
而且我得到這個屬性錯誤:
'datetime.date' object has no attribute 'tzinfo'
我已經在數據庫中有很多數據,所以改變模型會有風險。有沒有解決辦法? – nixnotwin
剛剛爲上述答案添加了一個解決方法。讓我知道這是否有效。 –
它運作良好。 – nixnotwin