这是我的情况:我在MSSQL中存储一些日期时间,我通过SQLAlchemy在python应用程序中获取,然后通过Marshmallow将其序列化为:
class MyVisitSchema(Schema):
cafe = fields.Nested(CafeSchema)
started_at = fields.DateTime()
ended_at = fields.DateTime()
class Meta:
additional = ('duration',)
ordered = True
但问题是:在序列化后,我得到类似"started_at": "1994-05-20T00:00:00+00:00"
的内容,表示UTC + 0,但我将所有日期存储在数据库中,没有任何时区信息,但是在UTC + 3中。
我知道我可以使用fields.Method()
更改输出时区,但看起来不方便。任何想法如何使我的序列化工作正常工作?)
答案 0 :(得分:6)
在官方纪录片中找到一些信息。所以,我的问题可以用
来解决 fields.Method()
硬编码,但看起来比使用ListView
答案 1 :(得分:1)
我宁愿使用datetimeformat
,请参见:https://marshmallow.readthedocs.io/en/3.0/api_reference.html
示例:
class MyVisitSchema(Schema):
cafe = fields.Nested(CafeSchema)
started_at = fields.DateTime()
ended_at = fields.DateTime()
class Meta:
additional = ('duration',)
ordered = True
# datetimeformat = '%Y-%m-%dT%H:%M:%S%z'
datetimeformat = '%Y-%m-%dT%H:%M:%S+03:00'
答案 2 :(得分:0)
如果它不起作用,请使用关键字format
started_at = fields.DateTime(format='%Y-%m-%dT%H:%M:%S+03:00')