《vue3封装公共方法》
一、解决方案
在Vue3项目开发中,封装公共方法可以提高代码的复用性、可维护性和项目的扩展性。通过将一些常用的功能逻辑抽离出来封装成公共方法,不同组件就可以方便地调用这些方法,而无需重复编写相同的代码。我们可以通过创建一个单独的js文件来存放公共方法,或者利用Vue3的组合式API(Composition API)等方式来进行封装。
二、基于普通js文件封装
我们可以创建一个名为commonUtils.js
的文件。例如,有一个格式化日期的公共方法。
javascript
// commonUtils.js
export function formatDate(date, fmt) {
if (/(y+)/.test(fmt)) {
fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length));
}
let o = {
'M+': date.getMonth() + 1,
'd+': date.getDate(),
'h+': date.getHours(),
'm+': date.getMinutes(),
's+': date.getSeconds()
};
for (let k in o) {
if (new RegExp(`(${k})`).test(fmt)) {
let str = o[k] + '';
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? str : ('00' + str).substr(str.length));
}
}
return fmt;
}
然后在组件中使用:
javascript
<div>{{formattedDate}}</div>
</p>
import { ref, onMounted } from 'vue';
import { formatDate } from './commonUtils';
export default {
setup() {
const formattedDate = ref('');
const now = new Date();
onMounted(() => {
formattedDate.value = formatDate(now, 'yyyy - MM - dd hh:mm:ss');
});
return {
formattedDate
};
}
};
<p>
三、利用组合式API封装
(一)定义工具函数
javascript // useUtils.js import { ref } from 'vue';</p> <p>export function useFormatDate() { const formatDate = (date, fmt) => { if (/(y+)/.test(fmt)) { fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length)); } let o = { 'M+': date.getMonth() + 1, 'd+': date.getDate(), 'h+': date.getHours(), 'm+': date.getMinutes(), 's+': date.getSeconds() }; for (let k in o) { if (new RegExp(<code>(${k})
).test(fmt)) { let str = o[k] + ''; fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? str : ('00' + str).substr(str.length)); } } return fmt; };return { formatDate };
}
(二)组件中使用
javascript <div>{{formattedDate}}</div> </p> import { ref, onMounted } from 'vue'; import { useFormatDate } from './useUtils'; export default { setup() { const { formatDate } = useFormatDate(); const formattedDate = ref(''); const now = new Date(); onMounted(() => { formattedDate.value = formatDate(now, 'yyyy - MM - dd hh:mm:ss'); }); return { formattedDate }; } }; <p>
除了上述两种方式,在实际项目中还可以根据需求考虑使用Vuex来管理一些全局的状态和相关的方法,对于一些需要跨多个组件共享且较为复杂的方法和数据逻辑,Vuex会是一个不错的选择。但如果是简单的公共方法,前两种方式已经足够满足需求并且更加简洁高效。