在Ionic 2中删除日期中的时间戳,可以使用JavaScript的Date对象和相关方法来实现。以下是一种可能的方法:
const timestamp = 1634567890000; // 时间戳
const date = new Date(timestamp);
const day = date.getDate(); // 获取日期
const month = date.getMonth() + 1; // 获取月份(注意月份从0开始,需要加1)
const year = date.getFullYear(); // 获取年份
const formattedDate = `${year}-${month}-${day}`; // 格式化日期为YYYY-MM-DD
完成以上步骤后,formattedDate变量将包含格式化后的日期字符串,不包含时间戳。
领取专属 10元无门槛券
手把手带您无忧上云