所以我最近遇到了文本标签中显示的错误,尽管我找不到它显示的原因。我已记录该值不为空并且在按下按钮之前该值已存在。这是我的 jsx 代码:
<TouchableOpacity style={styles.profilePhotoBack} onPress={() => addProfilePhoto()}>
{profilePhoto ? (
<Image style={styles.image} source={{uri: profilePhoto}} />
) : (
<View style={styles.profilePhoto}>
<AntDesign name="plus" size={50} color="white" />
</View>
)};
</TouchableOpacity>
这是我的功能代码和状态:
const [profilePhoto, setProfilePhoto] = useState();
const getPermission = async () => {
if (Platform.OS !== "web") {
const { status } = await Permissions.askAsync(Permissions.CAMERA_ROLL);
return status;
}
};
const pickImage = async () => {
try {
let result = await ImagePicker.launchImageLibraryAsync({
mediaTypes: ImagePicker.MediaTypeOptions.Images,
allowsEditing: true,
aspect: [1, 1],
quality: 0.5
});
if (!result.cancelled) {
setProfilePhoto(result.uri);
}
} catch (err) {
alert("Error picking image. Please try again later.");
}
};
const addProfilePhoto = async () => {
const status = await getPermission();
if (status !== "granted") {
alert("Please allow access to your camera roll to create your profile photo.");
return;
}
await pickImage();
};
任何帮助将不胜感激,因为我已经被困在这里相当长一段时间了。谢谢!
删除 Touchable Opacity 结束标记之前的 profilePhoto 条件末尾的分号
通常可能是由以下2个错误引起:
有时 SVG 可能与您当前的 React Native 版本不兼容。要解决此问题,请按照下列步骤操作:
访问 SVG 优化器:
优化您的 SVG:
复制优化的 SVG:
使用优化的 SVG:
对我来说,这种方法非常有效 我希望这有帮助!