收藏
回答

小程序里面能用map遍历吗

我在小程序里面用map遍历说没有map is not a function,小程序不是支持es6吗

回答关注问题邀请回答
收藏

3 个回答

  • 傷
    2020-10-28

    请问解决了吗?

    2020-10-28
    有用
    回复
  • Alam
    Alam
    2020-10-01

     formatDateTime: function(date){

      const year = date.getFullYear()

      const month = date.getMonth() + 1

      const day = date.getDate()

      const hour = date.getHours()

      const minute = date.getMinutes()

      const second = date.getSeconds()


      return [year, month, day].map(formatNumber).join('/'+ ' ' + [hour, minute, second].map(formatNumber).join(':')

    结果:formatNumber is not defined; [Component] Event Handler Error @ components/jlogin/jlogin#onLogin

    ReferenceError: formatNumber is not definedformatNumber is not defined; [Component] Event Handler Error @ components/jlogin/jlogin#onLogin

    ReferenceError: formatNumber is not defined

    2020-10-01
    有用
    回复
  • 疯狂的小辣椒
    疯狂的小辣椒
    2019-05-08

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2019-05-08
    有用
    回复 1
    • 傷
      2020-10-28
      请问可以使用吗?
      2020-10-28
      回复
登录 后发表内容