从React Native中的内容提供商获取数据

时间:2019-09-12 03:29:24

标签: react-native

可以建议任何解决方案或代码示例,以从React Native中的内容提供商android获取数据。 目前,我使用“ react-native-fs”,但它无法从内容提供商获取数据,或者我可能对此库有误。 我的代码

const uriContent = 'content://xxx.provider/info_all'
const existFile = await RNFS.exists(uriContent)
    if (existFile) {
        const fileContent = await RNFS.readFile(uriContent, 'utf8')
        try {
            const newData = JSON.parse(fileContent)
            // console.log('GOT RESULT UUID', newData.uuid);
            if (newData !== undefined && newData !== null &&
                newData.uuid !== undefined && newData.uuid !== null && newData.uuid.length > 0) {
                return newData.uuid
            } else {
                return ''
            }
        } catch (error) {
            console.log(error.message, error.code)
            return ''
        }
    } else {
        return ''
    }

1 个答案:

答案 0 :(得分:0)

您可以使用     RNFS.stat(uriContent) 代替     RNFS.exists(uriContent)。

State方法将像这样https://www.npmjs.com/package/react-native-fs#statfilepath-string-promisestatresult

以承诺方式提供文件状态