在 symfony 的时间类型字段中允许超过 24 小时

Allow more than 24 hours in Time Type field in symfony

我正在 symfony 中为旧的桌面应用程序开发一个 Web 应用程序,我有一个实体 Flight,它有一个名为 delay 的字段。例如,延迟可能是:35 小时 35 分钟。因为是旧系统的更新版本,所以我必须尽可能保持界面与旧系统相似。所以我需要在表格中以小时和分钟的形式显示这个字段。我使用了 TimeType 字段并且工作正常但不允许提交超过 24 小时。我想知道是否有解决方案可以让我将此字段呈现为小时和分钟。谢谢

试试这个 - DateIntervalType Field

This field allows the user to select an interval of time. For example, if you want to allow the user to choose how often they receive a status email, they could use this field to choose intervals like every "10 minutes" or "3 days".