ios – React Native:如何获取所有专辑的名称

我希望用户选择一个相册,然后以react-native显示它的照片.有CameraRoll,它有能力按groupName过滤,但我找不到如何检索这些groupNames的方法.有人知道怎么做,还是我需要编写一个原生插件? 最佳答案 好吧,至少你可以选择很多项目和组…

import R from 'ramda';
import { CameraRoll } from 'react-native';
let groupNames;
CameraRoll.getPhotos({
    first:20000
}).then(
    (result) => {
        const groupNamesAr = R.map(
            (item) => {
                return item.node.group_name;
            }
        )(result.edges)
        groupNames = R.countBy((i)=>i)(groupNamesAr);
    }
)
点赞