gpt4 book ai didi

javascript - 在 react 中显示两个日期

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

我想在我的 react 应用程序中显示两个日期。它应显示为日期 1 - 日期 2。这是代码。

export const formatFromToDates = (fromDate, toDate) => { 
return (
<Moment format='YYYY/MM/DD'>{fromDate}</Moment> -
toDate === null ? ' Now' : <Moment format='YYYY/MM/DD'>{toDate}</Moment>
);
}

但仅显示第二个日期。我该怎么做?

最佳答案

您忘记在 toDate 的 JSX 表达式周围放置 {}:

export const formatFromToDates = (fromDate, toDate) => { 
return (
<Moment format='YYYY/MM/DD'>{fromDate}</Moment> -
{toDate === null ? ' Now' : <Moment format='YYYY/MM/DD'>{toDate}</Moment>}
// -----^------------------------------------------------------------------------^
);
};

关于javascript - 在 react 中显示两个日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54734554/

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