// date October 10 2018 pmt 10:01
date = moment(details.date).format("MMMM DD YYYY at h:mm");
如何避免像a这样的瞬间保留关键字?我希望输出为October 10 2018 at 10:01
。
答案 0 :(得分:3)
为什么不将其分为两部分?
const date = moment(details.date);
const formattedDate = `${date.format("MMMM DD YYYY")} at ${date.format("h:mm")}`;
答案 1 :(得分:3)
您还可以使用:
const date = moment(details.date);
const formattedDate = moment(date).format("DD MMM YYYY [at] hh:mm A");