我要做的是提醒本地存储中的company_id
。
import React, { Component } from 'react';
import { ActivityIndicator, AsyncStorage, Button, StatusBar, Text, StyleSheet, View, } from 'react-native';
import * as pouchDB_helper from '../utils/pouchdb';
type Props = {};
export default class HomeScreen extends Component<Props> {
render() {
AsyncStorage.getItem('company_id', (err, result) => {
alert(result);
});
return (
<View style={styles.container}>
<Button title="Hi" onPress={this.doSomething} />
</View>
);
}
}
以下代码有效但我希望能够从辅助函数中执行此操作。如果你看到顶部,我有import * as pouchDB_helper from '../utils/pouchdb';
我在那里有以下内容:
import React from 'react';
import { AsyncStorage } from 'react-native';
import PouchDB from 'pouchdb-react-native'
export async function pouchDB_config() {
return AsyncStorage.getItem('company_id', (err, result) => {
return result;
});
}
而不是AsyncStorage.getItem()
代码,如果我alert(pouchDB_helper.pouchDB_config())
,我会得到一个包含以下内容的对象:{"_40":0,"_65":0,"_55"_null,"72":null}
我知道我显然没有采取一切正确的异性,所以如果有人有任何指导我会非常感激。我还没有达到如何在反应原生中使用异步函数的作用。
答案 0 :(得分:3)
这是因为当你调用函数pouchDB_helper.pouchDB_config()
它返回一个promise时。
有不同的方法可以利用它。
在您的util / pouchdb中更改函数如下:
export async function pouchDB_config() {
return await AsyncStorage.getItem('company_id');
}
现在您可以按如下方式调用此函数:
pouchDB_config().then((company_id) => {
console.log(company_id);
});
或者您可以在异步函数中的任何其他地方调用它:
const otherAsyncFunction = async () => {
const company_id = await pouchDB_config();
console.log(company_id);
}