React-apollo / Graphql:显示来自数据库的结果

时间:2018-08-19 08:33:11

标签: reactjs graphql create-react-app react-apollo graphql-js

我上个星期的目标是在单击提交按钮时执行的查询中显示接收到的数组中的项目。我正在使用以下函数,并从render函数调用它:

displayElements() {
    var data = this.props.getObjectsQuery;
    console.log(this.props);
    if (data.loading) {
        return <option disabled>Loading...</option>;
    } else {
        return data.action.map(action => {
            return (<option key={action.action} value={action.timestamp}>{action.filename}</option>);

        })
    }
}

Console.log显示以下数据:

data: {action: [{action: "User Assist Changed", timestamp: 1499348050000,…} 

但是在浏览器中什么也看不到。

0 个答案:

没有答案