问答详情
源自:3-4 云存储(1)

云开发控制台存储报错?

进入云开发控制台,

运营分析、数据库、云函数都可以访问,

但是点击进入存储时,总是提示:

数据加载失败

4 分钟前

加载 “cosListBucket” 失败:{"error":"error","headers":{}}

之前是存了一张图片在里面,

然后通过:

upload: function() {

// 选择图片

wx.chooseImage({

count: 1,

sizeType: ['original', 'compressed'],

sourceType: ['album', 'camera'],

success(res) {

// tempFilePath可以作为img标签的src属性显示图片

const tempFilePaths = res.tempFilePaths

console.log(tempFilePaths)

wx.cloud.uploadFile({

cloudPath: 'example.png', // 上传至云端的路径

filePath: tempFilePaths[0], // 小程序临时文件路径

success: res => {

// 返回文件 ID

console.log(res.fileID)

db.collection('image').add({

data: {

fileID: res.fileID

}.then(res => {

console.log(res)

}).catch(err => {

console.erroe(err)

})

})

},

fail: console.error

})

}

})

},

运行选择一张图片后就一直提示错误,刷新不出来了!


提问者:心雨至真 2020-03-04 11:43

个回答

  • 谢成
    2020-03-04 14:11:00
    已采纳

    请再试一次,现在还是出现这种情况吗

  • 心雨至真
    2020-03-04 20:53:58

    域名网络不行,家庭网络可以了

  • 心雨至真
    2020-03-04 14:36:31

    http://img4.mukewang.com/5e5f4c1b000140e314890516.jpg就这个,其他都可以(云函数,数据库、运营分析)