orm 查询出的时间格式为 2023-07-14T01:46:23.000000Z 怎么格式化成 2023-07-14 01:46:23呢
这里写搜到的方案及不适用原因
在 Laravel 框架中,你可以通过覆盖模型的 serializeDate
方法来自定义日期序列化的格式。你提供的代码示例正是这样做的。
在 webman 框架中,由于它也使用了 Eloquent ORM,
namespace app\common\traits;
use Carbon\CarbonInterface;
use DateTimeInterface;
trait DateFormat
{
protected function serializeDate(DateTimeInterface $date): string
{
return $date->format($this->dateFormat ?: CarbonInterface::DEFAULT_TO_STRING_FORMAT);
}
}
namespace app\Model;
use Illuminate\Database\Eloquent\Model;
use app\common\traits\DateFormat;
class AdminModel extends Model
{
use DateFormat;
// 其他代码...
}
这样设定无效 不知道为什么
在 Eloquent 模型上使用 toArray 或 toJson 方法时,Laravel 7 将使用新的日期序列化格式。为了格式化日期以进行序列化,Laravel 将会使用 Carbon 的 toJSON 方法,该方法将生成与 ISO-8601 兼容的日期,包括时区信息及小数秒。此外,该更改提供了更好的支持,并与客户端日期解析库集成。
此前,日期将序列化为以下格式:2020-03-04 16:11:00 。使用新格式进行序列化的日期将显示为:2020-03-04T20:01:00.283041Z
如果你希望继续保持之前所用的格式,你可以重写模型的 serializeDate 方法:
/**
*/
protected function serializeDate(DateTimeInterface $date)
{
return $date->format($this->dateFormat ?: 'Y-m-d H:i:s');
}