作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试在我的 react-native 应用程序中显示图像。我已将照片上传到 我的 Firebase 存储,它工作正常。然后我尝试显示来自 Firebase 存储的图像,但文件是 blob。我想将 blob 转换为图像,但我不知道语法。也许你们中的一个可以帮助我解决这个问题。
我应该把 RNFetch blob 放在哪里?我尝试将其放入 componentWillMount 中,但它显示错误。
uploadImage(uri, mime = 'application/octet-stream') {
return new Promise((resolve, reject) => {
const uploadUri = uri
let uploadBlob = null
const imageRef = firebase.storage().ref('profileImg').child(`${this.state.user.uid}/Profile Image - ${this.state.user.uid}`)
fs.readFile(uploadUri, 'base64')
.then((data) => {
return Blob.build(data, { type: `${mime};BASE64` })
})
.then((blob) => {
uploadBlob = blob
return imageRef.put(blob, { contentType: mime })
})
.then(() => {
uploadBlob.close()
return imageRef.getDownloadURL()
})
.then((url) => {
console.log(url)
resolve(url)
})
.catch((e) => {
console.log(e)
reject(e)
})
})
}
getProfileImage(){
let options = {
title: 'Choose Photo',
storageOptions: {
skipBackup: true,
path: 'images'
}
};
ImagePicker.showImagePicker(options, (response) => {
console.log('Response = ', response);
if (response.didCancel) {
console.log('User cancelled image picker');
}
else if (response.error) {
console.log('ImagePicker Error: ', response.error);
}
else if (response.customButton) {
console.log('User tapped custom button: ', response.customButton);
}
else {
let image_uri = { uri: 'data:image/jpeg;base64,' + response.data };
this.uploadImage(response.uri)
.then((url) => {
console.log('uploaded')
this.setState({
image_uri: url,
});
})
.catch((error) => console.log(error))
firebase.auth().currentUser.updateProfile({
photoURL: this.state.image_uri
});
}
})
}
最佳答案
我遇到了同样的问题,我实现的解决方法是将文件类型放入状态
在构造函数中
constructor() {
super();
// we will change it to fill the image file type from response
this.state = {
fileType: ""
};
}
在 getImage() 函数中,我们应该改变状态以放置文件类型
getImage() {
ImagePicker.showImagePicker(options, response => {
console.log("Response = ", response);
this.setState({
fileType: response.type
});
......... the rest of the code
并且在 uploadImage() 中,您应该将 mime 放入 fileType 的状态,如此处实现的那样
uploadImage(uri, mime = this.state.fileType) {
return new Promise((resolve, reject) => {
const uploadUri =
Platform.OS === "ios" ? uri.replace("file://", "") : uri;
let uploadBlob = null;
const imageRef = firebase
.storage()
.ref("images/")
.child(Date.now());
fs.readFile(uploadUri, "base64")
.then(data => {
return Blob.build(data, { type: `${mime};BASE64` });
})
.then(blob => {
uploadBlob = blob;
var metadata = {
contentType: mime
};
return imageRef.put(uri, metadata);
})
.then(() => {
uploadBlob.close();
return imageRef.getDownloadURL();
})
.then(url => {
resolve(url);
})
.catch(error => {
reject(error);
});
});
}
顺便说一句,这是我的第一个答案
关于javascript - 如何为 React Native 显示图像 blob,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46700166/
我是一名优秀的程序员,十分优秀!