gpt4 book ai didi

react-native - null 不是 Cameraroll 中的对象(评估 '_nativeInterface.default.getPhotos')

转载 作者:行者123 更新时间:2023-12-04 23:28:10 24 4
gpt4 key购买 nike

使用来自 React Native 社区的相机胶卷库并正确命名导入。下面是使用 expo 目录初始化项目的代码

import { ActionSheetIOS, ListView, StyleSheet, Text, TouchableOpacity, View, Platform} from 'react-native';
import { Navigator } from 'react-native-deprecated-custom-components';
import PhotoBrowser from 'react-native-photo-browser';
import CameraRoll from "@react-native-community/cameraroll";


const Photos= [
{
title: 'A',
description: 'Photo to display',
enableGrid: false,
media: [{
photo: 'A',
title: 'A',
}],
}
];


CameraRoll.getPhotos({
first: 30,
assetType: 'Photos',
}).then((data) => {
const media = [];
data.edges.forEach(d => media.push({
photo: d.node.image.uri,
}));
Photos[2].media = media;
}).catch();

请建议解决上述问题,谢谢

最佳答案

对我来说,手动链接模块就可以了。 react-native 链接@react-native-community/cameraroll

关于react-native - null 不是 Cameraroll 中的对象(评估 '_nativeInterface.default.getPhotos'),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59897569/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com