余大侠在劈柴 2022-09-10 17:19 采纳率: 100%
浏览 26
已结题

微信小程序如何显示当月月份

img


请问左上角那个因为在九月份,所以自动显示是九月预算的,是怎么做到的呢?麻烦能用代码讲讲吗

  • 写回答

1条回答 默认 最新

  • 林一怂儿 新星创作者: 前端开发技术领域 2022-09-13 13:22
    关注

    img

    index.wxml

    <view>{{currentMonth}}月总预算</view>
    

    index.js

    Page({
      data: {
        currentMonth: ""
      },
      onLoad() {
        // 获取当前月(注意:返回数值为0~11,需要自己+1来显示)
        let currentMonth = new Date().getMonth() + 1;
        // 补零
        currentMonth = (currentMonth < 10 ? '0' : '') + currentMonth
        this.setData({ currentMonth })
      },
    })
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 9月21日
  • 已采纳回答 9月13日
  • 创建了问题 9月10日