vue-Material-Year-Calendar插件:activeDates.push后日历未更新选中状态的解决方法
使用Vue-Material-Year-Calendar插件时,常常遇到一个问题:将日期添加到activeDates数组后,日历界面未更新选中状态。本文将分析问题原因并提供解决方案。
问题描述:
按照官方文档,使用activeDates.sync绑定activeDates数组,并通过自定义方法向数组添加日期信息。但即使activeDates数组已包含该日期,日历界面仍未显示选中状态。
立即学习“前端免费学习笔记(深入)”;
代码示例(Vue 2):
<yearcalendar :activeclass="activeclass" :activedates.sync="activedates" prefixclass="your_customized_wrapper_class" v-model="year"></yearcalendar> data() { return { year: 2019, activedates: [ { date: '2019-02-13' }, { date: '2019-02-14', classname: 'red' }, // ... ], activeclass: '', } }, toggledate(dateinfo) { const index = this.activedates.indexOf(dateinfo); if (index === -1) { this.activedates.push(dateinfo); } else { this.activedates.splice(index, 1); } }
问题根源及解决方案:
问题在于Vue 2和Vue 3中.sync修饰符的使用差异。
Vue 2解决方案: 移除.sync修饰符,直接使用:activedates:
<yearcalendar :activeclass="activeclass" :activedates="activedates" prefixclass="your_customized_wrapper_class" v-model="year"></yearcalendar>
Vue 3解决方案: 使用ref并添加selected属性:
const activeDates = ref([ { date: '2024-02-13', selected: true, className: '' }, { date: '2024-02-14', className: 'red' }, // ... ]); const toggledate = (dateinfo) => { const index = activeDates.value.findIndex(item => item.date === dateinfo.date); if (index === -1) { activeDates.value.push({...dateinfo, selected: true}); } else { activeDates.value.splice(index, 1); } };
通过以上修改,日历界面将正确反映activeDates数组的更改。 toggledate函数的逻辑也需要根据实际需求调整,例如在push新日期时,显式设置selected: true。 Vue 3 的例子中使用了 findIndex 来更精确地查找日期,避免了潜在的比较对象不一致的问题。 也使用了展开运算符 …dateinfo 来避免直接修改原对象,保持数据的一致性。
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END