我正在尝试打印某些API返回的布尔值和时间戳值。我无法做同样的事情。帮助将不胜感激
列配置对象:
<ReactTable
data={this.state.data}
columns={[
{
Header: 'Name',
accessor: 'name'
},
{
Header: 'Age>18',
accessor: d => d.isAgeAbove18.toString(); // this does not work
},
{
Header: 'TimeStamp',
accessor: d => d.timeVal.toString(); // this does not work
},
]}
/>
答案 0 :(得分:1)
查看React表文档,它说只要访问器类型不是字符串,就需要提供id属性。所以,我更新的格式应该是这样。
columns={[
{
Header: 'Name',
accessor: 'name'
},
{
id:'age' // add this
Header: 'Age>18',
accessor: d => d.isAgeAbove18.toString();
},
{
id: 'timestamp' // add this
Header: 'TimeStamp',
accessor: d => d.timeVal.toString();
},
]}
答案 1 :(得分:0)
如果您使用过滤器,我认为这是最好的解决方案,
id: 'available',
Header: "Available",
accessor: d => { return d.available ? 'Available' : 'Not available' },
filterable: true,
Filter: () => (
<select className='form-control' value={this.state.availability_value} onChange={(e) => this.applyFilter(e.target.value)} >
<option value={`{ "available": "" }`}>Select</option>
<option value={`{ "available": "" }`}>All</option>
<option value={`{ "available": "1" }`}>Available</option>
<option value={`{ "available": "0" }`}>Not available</option>
</select>
)