如何克服“datetime.datetime not JSON serializeable”?
我有一个基本命令如下:
sample = {}
sample['title'] = "String"
sample['somedate'] = somedatetimehere
当我尝试这样做时,我得到:jsonify(sample)
TypeError: datetime.datetime(2012, 8, 8, 21, 46, 24, 862000) is not JSON serializable
我能做些什么来使我的字典示例可以克服上面的错误?
注意:虽然它可能不相关,但字典是从我打印出来时从哪里检索记录生成的,输出是。mongodb
str(sample['somedate'])
2012-08-08 21:46:24.862000