gpt4 book ai didi

laravel - 使用laravel在vue js中转换日期格式

转载 作者:行者123 更新时间:2023-12-03 06:41:35 27 4
gpt4 key购买 nike

我正在使用 verta 库将 gregorian 日期转换为 laravel 中的回历日期
https://github.com/hekmatinasser/verta

在简单模式(.blade.php 文件)中,我使用的是这样的代码:

{{ Verta($category->created_at)->format('%d %B %Y') }}
for converting {{created_at}}

但在 Vue js 中我无法访问这种格式
{{category.created_at}}

如何使用此方法转换 vue js 日期?

最佳答案

您可以在模型上使用 mutator 来解析日期,然后再返回它。

public function getCreatedAtAttribute($value)
{
return Verta($value)->format('%d %B %Y');
}

这应该在您的类别模型上定义
{{category.created_at}}

然后将包含已解析的日期

关于laravel - 使用laravel在vue js中转换日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54999330/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com