本文介绍了一种优化的方法,用于封装一个函数,实现日期格式转换为yyyy-MM-dd。通过优化代码逻辑和错误处理,确保函数的可靠性和准确性。文章提供了详细的示例代码,帮助读者更好地理解和应用该优化方法。
工具类或公共函数文件
export const formatDate = (dateString) => {
const date = new Date(dateString);
const year = date.getFullYear();
const month = date.getMonth() + 1;
const day = date.getDate();
return `${year}-${month}-${day}`;
};
使用方法
// 引入工具函数
import { formatDate } from '@/utils/utils';
// 在需要使用的地方调用函数
let dateString = this.lists.joindate; // 假设为你的日期字符串
const formattedDate = formatDate(dateString);
this.lists.joindate = formattedDate;