美文网首页
微信小程序PC端padStart方法不支持

微信小程序PC端padStart方法不支持

作者: 依然_8deb | 来源:发表于2021-04-15 10:37 被阅读0次

    微信小程序PC端padStart方法不支持,改为如下

    const now = new Date()
    const day = ("0" + now.getDate()).slice(-2);
    const month = ("0" + (now.getMonth() + 1)).slice(-2);
     //拼装日期格式  
    var date = now.getFullYear() + "-" + now.getMonth() + 1 + "-" + now.getDate()
    

    相关文章

      网友评论

          本文标题:微信小程序PC端padStart方法不支持

          本文链接:https://www.haomeiwen.com/subject/gykdlltx.html