【发布时间】:2021-09-24 09:16:13
【问题描述】:
我在使用 imgbb API 时遇到问题 通过 imgbb API,我一直在尝试将图像上传到我在 imgbb 上创建的相册。但到目前为止我找不到任何信息......(我已经在谷歌上搜索了 3 个小时,哈哈) 有人知道在相册中保存图片要添加什么吗?
这是我的代码。
感谢阅读:)
let body = new FormData()
body.set('key', 'my-api-key')
body.append('image', File)
axios.post('https://api.imgbb.com/1/upload/', body)
.then((response) => {
console.log('response', response)
console.log('response URL', response.data.data.image.url)
console.log('success')
})
.catch((error) => {
console.log('error', error)
alert('try agian')
}) enter code here
【问题讨论】: