HarmonyOS 鸿蒙Next 想实现点击日历上的元素,返回点击元素的年月日

发布于 1周前 作者 wuwangju 来自 鸿蒙OS

HarmonyOS 鸿蒙Next 想实现点击日历上的元素,返回点击元素的年月日 我做了一个自定义组件,日历,但是在坐点击事件的时候蒙了,怎么解决点击之后获得对应元素的信息啊,还要更改样式

附上代码,可跑,使用api9

@Entry
@Component
export default struct CalendarItem {
  //定义当年当月当日
  @State currentYear: number = 2024
  @State currentMonth: number = 0
  @State currentDay: number = 0
  //日历第一天 为1:周日 为0: 周一
  //取得当月天数
  @State allDay: number[] = []
  //获取当月第一天是星期几
  @State currentFirstWeekDay: number = 1
  @State week: string[] = ['日', '一', '二', '三', '四', '五', '六']
  //存放上个月的天数
  @State preMonth: any[] = []
  //需要显示下月的天数
  @State nextMonth: any[] = []
  //当前
  @State currentText: string = ''

//获取上月天数
  getPrevMonthDay() {
    let date = new Date(this.currentYear, this.currentMonth - 1, 0); // 获取上月;
    let day = date.getDate(); // 因为Date函数中天设置的0,因此这里是上月最后一天的值
    let days = this.currentFirstWeekDay; // 上月要显示几天
    let weeks = [];
    while (days > 0) {
      weeks.push({
        year: date.getFullYear(),
        month: date.getMonth() + 1,
        day: day--,
      });
      days--;
    }
    return weeks.sort((a, b) => a.day - b.day); // 因为是从大到小的,排个序
  }

//获取下月天数
  getNextMonthDay(){
    let date = new Date(this.currentYear, this.currentMonth - 1, 0); // 获取上月;
    let day = date.getDate(); // 因为Date函数中天设置的0,因此这里是上月最后一天的值
    let days = this.currentFirstWeekDay; // 上月要显示几天
    let weeks = [];
    while (days > 0) {
      weeks.push({
        year: date.getFullYear(),
        month: date.getMonth() + 1,
        day: day--,
      });
      days--;
    }
    return weeks.sort((a, b) => a.day - b.day); // 因为是从大到小的,排个序
  }

  aboutToAppear() {
    let date = new Date();
    this.currentDay = date.getDate()
    this.currentMonth = date.getMonth() + 1;
    this.currentYear = date.getFullYear();
    this.currentFirstWeekDay = new Date(date.getFullYear(), date.getMonth(), 1).getDay();
    let allDay = new Date(date.getFullYear(), date.getMonth() + 1, 0).getDate();

    for (let i = 0;i < allDay; i++) {

      this.allDay[i] = i
    }
    this.preMonth = this.getPrevMonthDay()
  }
  refreshDays(month: number,year: number){
    //上月
    let date = new Date(year, month - 1, 0); // 获取上月;
    let day = date.getDate(); // 因为Date函数中天设置的0,因此这里是上月最后一天的值
    this.currentFirstWeekDay = new Date(year, month-1, 1).getDay();
    let days = this.currentFirstWeekDay; // 上月要显示几天
    let weeks = [];
    while (days > 0) {
      weeks.push({
        day: day--,
      });
      days--;
    }
    weeks.sort((a, b) => a.day - b.day); // 因为是从大到小的,排个序
    this.preMonth = weeks
    //本月
    console.info(`year${year}month${month}`)
    let allDay = new Date(year, month, 0).getDate();
    console.info(`allDay${allDay}`)
    //需要先重置
    this.allDay = []
    for (let i = 0;i < allDay; i++) {
      this.allDay[i] = i
    }
    console.info(`${this.allDay}`)
  }
  refreshDate(month: number) {
    if (month < 1) {
      this.currentMonth = 12
      this.currentYear--
      //重新更新天数
      this.refreshDays(this.currentMonth,this.currentYear)
    }
    else if (month > 12) {
      this.currentMonth = 1
      this.currentYear++

      this.refreshDays(this.currentMonth,this.currentYear)
    }
    else {
      this.currentMonth = month
      this.currentYear = this.currentYear;

      this.refreshDays(this.currentMonth,this.currentYear)
    }
  }

  @Builder Header() {
    Row() {
      Image($rawfile('icon_arrow_l.svg'))
        .width(15)
        .height(15)
        .margin({ right: 20 })
        .onClick(() => {
          this.currentMonth--
          this.refreshDate(this.currentMonth)
        })
      Text(`${this.currentYear}年${this.currentMonth}月`)
        .fontSize(20)
      Image($rawfile('icon_arrow_r.svg'))
        .width(15)
        .height(15)
        .margin({ left: 20 })
        .onClick(() => {
          this.currentMonth++

          this.refreshDate(this.currentMonth)
        })
    }
  }

  @Builder Week(value: string[]) {
    Column() {
      Grid() {
        ForEach(value, (data: string) => {
          GridItem() {
            Text(data)
              .fontSize(16)
              .fontWeight(FontWeight.Bold)
              .width('100%')
              .height('100%')
              .textAlign(TextAlign.Center)
          }
        })
      }
      .columnsTemplate('1fr 1fr 1fr 1fr 1fr 1fr 1fr')
      .columnsGap(10)
      .rowsGap(10)
      .width('90%')
      .height(50)
    }
    .width('100%')
    .margin({ bottom: 10 })
  }

  @Builder Day() {
    Grid() {
      ForEach(this.preMonth, (i) => {
        GridItem() {
          Text(String(i['day']))
            .textAlign(TextAlign.Center)
            .fontSize(16)
            .fontColor(Color.Gray)
        }
        .onClick(() => {
          this.currentMonth--
          console.info(`currentMonth${this.currentMonth}`)
          this.refreshDate(this.currentMonth)
        })
      })
      ForEach(this.allDay, (i) => {
        GridItem() {
            Text(String(i + 1))
              .fontSize(16)
              .fontColor('#ff2e5391')
              .textAlign(TextAlign.Center)
        }
      })
    }
    .columnsTemplate('1fr 1fr 1fr 1fr 1fr 1fr 1fr')
    .columnsGap(10)
    .rowsGap(10)
    .width('90%')
    .height('100%')
  }
  build() {
    Column() {
      this.Header()
      this.Week(this.week)
      this.Day()
    }
  }
}

更多关于HarmonyOS 鸿蒙Next 想实现点击日历上的元素,返回点击元素的年月日的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html

6 回复

这个很简单:首先在自定义组件CalendarItem里面定义一个监听:

private onClickItem: (string) => void;

然后在点击“日”的时候加个监听:

最后就是使用了:

这样点击就出现了年月日的toast了:我目前是把年月日按-拼接的,看你自己怎么使用了,你定义三个字符串也可以。

更多关于HarmonyOS 鸿蒙Next 想实现点击日历上的元素,返回点击元素的年月日的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html


点击的时候日需要+1。 this.onClickItem(this.currentYear + “-” + this.currentMonth + “-” + (i + 1)),

不客气,不是大佬,一样的学习者。哈哈有啥问题一起进步。

在HarmonyOS(鸿蒙Next)中,要实现点击日历上的元素并返回点击元素的年月日,可以使用CalendarControllerCalendarView组件。以下是一个简单的示例代码:

import { CalendarController, CalendarView } from '@ohos.calendar';

// 创建CalendarController实例
let calendarController = new CalendarController();

// 创建CalendarView实例
let calendarView = new CalendarView();

// 设置CalendarView的控制器
calendarView.setController(calendarController);

// 监听日历项的点击事件
calendarView.setOnItemClickListener((date) => {
    let year = date.getFullYear();
    let month = date.getMonth() + 1; // 月份从0开始,需要加1
    let day = date.getDate();
    console.log(`点击的日期是:${year}年${month}月${day}日`);
});

// 将CalendarView添加到页面中
// 假设有一个名为container的容器
container.appendChild(calendarView);

在这个示例中,CalendarView用于显示日历,CalendarController用于控制日历的视图。通过setOnItemClickListener方法监听日历项的点击事件,并在回调函数中获取点击日期的年月日信息。

在HarmonyOS鸿蒙Next中,可以通过DatePickerDialog或自定义日历组件来实现点击日历元素并返回点击元素的年月日。首先,使用DatePickerDialog设置日期选择监听器,在onDateChanged方法中获取选中的年月日。若使用自定义日历组件,需在点击事件中获取当前选中日期的YearMonthDay对象,然后通过其getYear()getMonth()getDay()方法获取具体值。最后,将获取的年月日信息返回或进行进一步处理。

回到顶部
AI 助手
你好,我是IT营的 AI 助手
您可以尝试点击下方的快捷入口开启体验!