1. 程式人生 > >TypeError: datetime.datetime(2018, 8, 18, 19, 47, 39, 171000) is not JSON serializable

TypeError: datetime.datetime(2018, 8, 18, 19, 47, 39, 171000) is not JSON serializable

寫django時報瞭如下錯誤:

TypeError: datetime.datetime(2018, 8, 18, 19, 47, 39, 171000) is not JSON serializable

t.task_publish_date

改為

t.task_publish_date.strftime("%m-%d %H:%M")

問題解決。