上传文件到小程序云,云端的路径怎么写
wx.cloud.uploadFile({
cloudPath: 'abc.png', // 上传至云端的路径
filePath: '',
success: res => {
console.log(res.fileID)
}
})
小程序上传图片 abc.png 到云,会将 abc.png存储到跟目录下,怎么才能将这个文件存储到我建立的目录 A 下呢?
wx.cloud.uploadFile({
cloudPath: 'abc.png', // 上传至云端的路径
filePath: '',
success: res => {
console.log(res.fileID)
}
})
小程序上传图片 abc.png 到云,会将 abc.png存储到跟目录下,怎么才能将这个文件存储到我建立的目录 A 下呢?