0
私はLodashを使用して同じ行に文字列の2つのオブジェクトを表示したいですか? chain(_.chain(vehicle).get( 'test').get( 'test2))を使用することもできます。React JS lodashは同じ機能を持っています
これは私が材料-UIカードを使用していますし、私のコードは次のようになりますサンプルJSONファイル
{
"results": [
{
"vehicle": {
"plate_no": "ABC 1234",
"model": "Toyota Innova"
}
}
]
}
です。
{_.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}}
/>
と私の目標は、このようなタイトルを表示することです。
トヨタイノーバ - ABC 1234
ありがとうございます:)それは何とか動作しますか? 2つのロダッシュ機能を使用することはできませんか? –
テンプレート文字列 '$ {_ get(d.vehicle、 'model')} - $ {_get(d.vehicle、 'plate_no')} '。 –
助けてくれてありがとう:) –