我正在使用reactjs和我使用“nextjs”框架,我正在获取“博客数据”使用循环,但问题是“我想改变博客的日期格式”这里是我目前的代码
{user && user.length > 0 && user.map((userObj, index) => (
<NewsCard
key={index}
img={userObj.image}
title={userObj.title}
date={userObj.CreatedAt} // getting date for example "2023-03-26 01:40:26"
/>
))}
我的预期日期格式是April 29,2023
我该怎么做?
2条答案
按热度按时间2ledvvac1#
使用
toLocaleDateString()
方法转换日期elcex8rz2#
您可以使用
Date.toLocaleString()
并指定所需的格式:所以,我想,在你的React页面中,你应该放一些像这样的东西