使用promise时,Render不返回任何内容

时间:2018-03-27 11:08:25

标签: javascript react-native promise render

我正在尝试实现我的渲染功能,以便它等到我完成从Web上抓取数据(如果AsyncStorage没有它)或从AsyncStorage中取出它,但我正在努力实现承诺方面它:

render() {
    let pic = {
        uri: 'https://i.imgur.com/G19Jnuj.jpg'
    };
    this.renderAttributes()
        .then((response) => {
            console.log("finished val: " + this.state.name);
            console.log("finished response: " + response);
            return (
                <View style={shared.basicView}>
                    <Image source={pic} style ={styles.circleImage}/>
                    <Text style={styles.infoText}>{this.state.name}</Text>
                    <Text style={styles.titleText}>Bio</Text>
                    <Text style={styles.infoText}>blah blah</Text>
                    <Text style={styles.titleText}>Email</Text>
                    <Text style={styles.infoText}>blah blah</Text>
                    <Text style={styles.titleText}
                          onPress={() => this.props.navigation.navigate('Repositories')}>
                        Public Repos Count</Text>
                    <Text style={styles.infoText}>3</Text>
                    <Text style={styles.titleText}
                          onPress={() => this.props.navigation.navigate('Followers')}>
                        Follower Count</Text>
                    <Text style={styles.infoText}>0</Text>
                    <Text style={styles.titleText}
                          onPress={() => this.props.navigation.navigate('Following')}>
                        Following Count</Text>
                    <Text style={styles.infoText}>0</Text>
                    <Text style={styles.titleText}>Profile Created</Text>
                    <Text style={styles.infoText}>November 2015</Text>
                </View>
            )
        })
        .catch((error) => {
            console.log("Profile creation failed: " + error);
            return(null);
        })
}

类的其余部分和renderAttributes函数的定义如下:

class ProfileScreen extends Component {
    state: any;

    constructor(props) {
        super(props);
        this.state = {
            name: '',
            bio: '',
            email: '',
            repoCount: '',
            followerCount: '',
            followingCount: '',
            profileCreated: ''
        };
        this.renderAttributes = this.renderAttributes.bind(this);
    }

    async renderAttributes() {
        console.log("inside ga");
        let jsonData=null;
        try {
            axios.get('https://api.github.com/users/dummy')
                .then(async (response) => {
                    console.log("Response: " + JSON.stringify(response));
                    jsonData=response;
                    console.log("jsonData: " + JSON.stringify(jsonData));

                    const nameVal = await AsyncStorage.getItem('name');
                    if(nameVal !== null) {
                        console.log("name val: " + nameVal);
                        this.setState({name: nameVal});
                    }
                    else {
                        try {
                            await AsyncStorage.setItem('name', jsonData.data.name);
                        }
                        catch (error) {
                            console.log("Set name error: " + error);
                        }

                        if(jsonData.data.name == null) {
                            this.setState({name: 'n/a'});
                        }
                        else {
                            console.log("name: " + jsonData.data.name);
                            this.setState({name: jsonData.data.name});
                        }
                    }

                    const bio = await AsyncStorage.getItem('bio');
                    if(bio !== null) {
                        this.setState({bio: bio});
                    }
                    else {
                        try {
                            await AsyncStorage.setItem('bio', jsonData.data.bio);
                        }
                        catch (error) {
                            console.log(error);
                        }
                        if(jsonData.data.bio == null) {
                            this.setState({bio: 'n/a'});
                        }
                        else {
                            this.setState({bio: jsonData.data.bio});
                        }
                    }
                    // etc for each attribute in state
                })
                .catch((error) => {
                    console.log('Error fetching: ' + error);
                });

        }
        catch (error) {
            console.log('Error creating attributes: ' + error);
        }
    }

(请原谅我所有的console.log语句)。对我来说,似乎这应该返回null或无论如何返回一个View,但我不断收到错误"Invariant Violation: ProfileScreen(...): Nothing was returned from render. This usually means a return statement is missing. Or, to render nothing, return null."。我的捕获语句都没有被触发。说实话,我很困惑;我注意到有两件事情可能是罪魁祸首:1。我的IDE强调this.state.name为未解析的变量名称,2。我没有明确定义renderAttributes内的承诺(我应该不得不?)。此外,仅基于打印陈述,this.renderAttributes().then(response)内的内容似乎在axios.get.then()之前打印;不确定这是不是一个红鲱鱼。有什么建议吗?

2 个答案:

答案 0 :(得分:1)

实际上,最好的地方as stated by docs componentDidMount

您应该提供一个加载屏幕&#39;在第一次运行时(如空字段和/或微调器)和检索数据(所有在componentDidMount中完成)和状态设置,显示它

<强> componentWillMount

  

避免在此方法中引入任何副作用或订阅。   对于这些用例,请改用componentDidMount()。

<强> componentDidMount

  

componentDidMount()在组件出现后立即调用   安装。需要DOM节点的初始化应该放在这里。如果你   需要从远程端点加载数据,这是一个好地方   实例化网络请求。

答案 1 :(得分:0)

这里的问题是你试图在render()函数中解析一个promise,而promise本身是异步的,你没有返回任何东西,所以隐式返回undefined。

渲染功能应该是纯净的,没有任何副作用。

你应该使用异步逻辑来获取一个反应生命周期钩子中的数据,例如componentWillMount()componentDidMount()

https://reactjs.org/docs/state-and-lifecycle.html