gpt4 book ai didi

android - 一直 react native 空屏幕

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:31:14 26 4
gpt4 key购买 nike

我是 react-native 的新手,试图创建我自己的组件,但它一直显示一个空屏幕。

这是我的组件代码

class BoxComponent extends Component {
constructor(props){
super(props);
this.state = {message: null}
}
componentMounted(){
axios.get('example.com').then(response => {
this.setState({
message: response.data
})
})
}

render(){
return (<Text style={style.boxStyle}>{this.state.message}</Text>)
}
}

最佳答案

如果你想在组件挂载后获取一些数据,那么将你的代码改成这样

class BoxComponent extends Component {
constructor(props){
super(props);
this.state = {message: null}
}
componentDidMount(){
axios.get('example.com').then(response => {
this.setState({
message: response.data
})
})
}

render(){
return (<Text style={style.boxStyle}>{this.state.message}</Text>)
}
}

希望对您有所帮助。

关于android - 一直 react native 空屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46887234/

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