我要去假設,根據您的僞代碼,您瞭解如何獲得從AsyncStorage
數據,它的不是一個好主意是使用AsyncStorage
您render
函數裏面,你不實際上意味着阿賈克斯,而是本地存儲。
但誤差顯示出來,因爲你需要確保你包一個<Text>
元素中的文本。如果你看一下this paragraph它說:
在本地做出反應,我們更嚴格一下:你必須換一個<Text>
組件內部的所有文本節點;你不能直接在<View>
下有一個文本節點。
編輯:
class MyComponent extends Component {
constructor(props) {
super(props);
this.state = {
data: '',
};
}
componentDidMount() {
AsyncStorage.getItem('XXX', (err, result) => {
// @TODO: You should handle errors too
this.setState({
data: result.text,
});
});
}
render() {
// Returning null will not render anything
// Once the results come in, it will update automatically
if (!this.state.data) return null;
// Raw text must be wrapped in Text
return (
<Text>{this.state.data}</Text>
);
}
}
這是一個只是簡單的代碼。 您可以假設AsyncStorage喜歡異步調用。 我需要如何在異步調用完成後在回調函數中呈現組件。 –
我更新了代碼。 – rclai