我上个星期的目标是在单击提交按钮时执行的查询中显示接收到的数组中的项目。我正在使用以下函数,并从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,…}
但是在浏览器中什么也看不到。