如何获得州名?

时间:2019-05-30 09:28:01

标签: reactjs

我有一个函数,该函数接收状态数组(存款,交易,取款),并呈现每个数组中的公共数据,例如(交易号,地址等)

但是我在每个数组中都有唯一的数据,我需要这样的东西。

 // What I have now
 txReander(data){
 data.map((index, key) => ...)
 }

 // What I need

 txReander(data){
 data.map((index, key) => ...

 if(data.name === "deposit"){
 // do additional rendering for deposit
 }

 ... // the same for withdarw, trade
 )
 }

0 个答案:

没有答案