我正在尝试从在线资源中获取图像并将其转换为blob / base64,但是我使用的代码似乎无法正常工作
fetch('https://example.com/image.jpg')
.then( res => res.blob() )
.then( data => {
const reader = new FileReader()
reader.onloaded = () => {
console.log(reader.readAsDataURL(data))
}
})
它有什么问题,我需要更改以解决它吗?