我想用Lodash get显示同一行中的两个字符串对象?或者可以使用链(_.chain(vehicle).get('test')。get('test2))。
这是示例JSON文件
{
"results": [
{
"vehicle": {
"plate_no": "ABC 1234",
"model": "Toyota Innova"
}
}
]
}
我正在使用Material-ui Card,我的代码看起来像这样。
{_.map(this.state.vehicle, (d, idx) =>{
return(
<Col xs={6} style={{margin: '20px 0 5px' }}>
<Card key={d.id}>
<CardHeader
avatar="http://lorempixel.com/100/100/nature/"
title={_.get(d.vehicle, 'model') - _.get(d.vehicle, 'plate_no')}
actAsExpander={true}
showExpandableButton={true}
style={{backgroundColor: Colors.grey200}}
/>
我的目标是显示标题如下。
Toyota Innova - ABC 1234