gpt4 book ai didi

magento - Magento 网格列中数据库的时间戳值

转载 作者:行者123 更新时间:2023-12-01 18:43:06 25 4
gpt4 key购买 nike

我在 Magento 管理中创建了一个网格,并尝试从数据库中获取一列时间戳。

在我的网格中,我像这样添加了它:

$this->addColumn(
'created_at', array(
'header' => $translateHelper->__('Created at'),
'align' => 'left',
'width' => '50px',
'type' => 'datetime',
'index' => 'created_at',
)
);

但在我的专栏中,我的数据如下所示:

MMMMMMMMM 28, 13 04:June:ssss PM 

这真的很奇怪,因为我创建了像上面这样的其他时间戳列,并且它们显示正常。有谁知道问题出在哪里吗?

最佳答案

时间戳有3种类型

date
datetime
time

尝试

$this->addColumn('created_at', array(
'header' => Mage::helper('customer')->__('Created at'),
'type' => 'date', // <-- change to date
//'format' => 'Y.m.d',
'index' => 'created_at',
));

关于magento - Magento 网格列中数据库的时间戳值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17471416/

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