收藏
回答

云开发中云文件的有效期怎么设置

框架类型 问题类型 终端类型 AppID 基础库版本
小游戏 Bug 工具 开发者工具 开发者工具v1.02.1809111

云开发中的接口wx.cloud.getTempFileURL,描述中说可以自定义有效期。请问怎么自定义?


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

1 个回答

  • Ocean
    Ocean
    2019-03-15

    您好,请尝试使用这种形式来指定有效期:

    wx.cloud.getTempFileURL({
      fileList: [{
        fileID: 'a7xzcb',
        maxAge: 60 * 60, // one hour
      }]
    }).then(res => {
      // get temp file URL
      console.log(res.fileList)
    }).catch(error => {
      // handle error
    })


    2019-03-15
    有用
    回复
登录 后发表内容