收藏
回答

请问这是什么数据类型?

我以为是数组,但用下标无法获取内容

for(let i=0;i<src.length;i++)
        {
          wx.cloud.uploadFile({
            cloudPath:'annimages/'+time+i,
            filePath:src[i],
          })
          .then(res=>{
            p.push(res.fileID);
          })
        }
var pl = new Array();
pl = p;
console.log("pl",pl);
console.log("pl0",pl[0]);

最后一次编辑于  2022-05-02
回答关注问题邀请回答
收藏

1 个回答

  • Mr.Zhao
    Mr.Zhao
    2022-05-03

    跟数据类型没关系,代码写到then里面

    2022-05-03
    有用
    回复 2
    • 安静
      安静
      发表于移动端
      2022-05-03
      但是我想储存这些fileID到数组里,然后上传到数据库的一条记录里,请问该这么写?
      2022-05-03
      回复
    • Mr.Zhao
      Mr.Zhao
      2022-05-03回复安静
      数组用push啊
      2022-05-03
      回复
登录 后发表内容