vue 农历日期转公历日期(含插件 js-calendar-converter 使用教程)

2024-01-09 18:32:18

安装插件

cnpm install js-calendar-converter --S

导入插件

import calendar_converter from 'js-calendar-converter'

农历日期转公历日期

let new_date = calendar_converter.lunar2solar(2023, 12, 01)
let new_year = new_date.cYear
let new_month = new_date.cMonth < 10 ? ('0' + new_date.cMonth) : new_date.cMonth
let new_day = new_date.cDay < 10 ? ('0' + new_date.cDay) : new_date.cDay

console.log('公历日期为:', new_year + new_month + new_day)

得到公历日期 20240111

更多属性和方法见
https://blog.csdn.net/weixin_51157081/article/details/131285709

文章来源:https://blog.csdn.net/weixin_41192489/article/details/135486855
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。