最佳答案
我有一个基本的判断如下:
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
。