我正在寻找来自 qt 的日期时间,以将字符串作为 isodate 但带有时区返回给我。我有时在网上寻找我的问题,但没有找到解决方案
我刚得到这个:
this->ui.dateEnd->dateTime().toString(Qt::ISODate);
给我这个:
1900-10-31T23:00:00Z
或者这个:
this->ui.dateEnd->dateTime().toUfc().toString(Qt::ISODate);
给我这个:
1900-10-31T23:00:00Z
我想要这个:
1900-10-31T23:00:00+01.00.00
如果有人有想法,谢谢!