本文主要是介绍微信小程序农阳历日历选择器农阳历日期互转,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章主要实现微信小程序中农历、阳历日期选择器 &选中日期同时获取它对应的农/阳历日期
因项目需求所以我在demo中实现选中日期并获取相应的农/阳历日期,实现的主要代码在selectdate.js代码的61-
if (this.data.selectDateType === 1) {//阳历lastYear = this.data.selected_value[0] + MIN_LUNAR_YEAY;lastMonth = this.data.selected_value[1] + 1;//真实的月份lastDay = this.data.selected_value[2] + 1;var d = new Date(lastYear, this.data.selected_value[1], lastDay);var lunarDate = calendarConverter.solar2lunar(d)//阳历日期转农历日期console.log("阳转农:", lunarDate.lYear + "年" + lunarDate.lMont
这篇关于微信小程序农阳历日历选择器农阳历日期互转的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!