如果您不了解 React 等,请阅读此处。以下是相同的问题,但与 React 等更相关:
我有包含一种数据的严重对象:价格:
'btc-usd' : 2640, 'ltc-usd': 40, ...
加密货币数量:
'btc-usd': 2.533, 'ltc-usd': 10.42, ...
如何获取这些对象并创建一个对象数组,例如:
[ { name: 'Bitcoin', amount: 2.533, value: 2640, id: 'btc-usd' },
{ name: 'Litecoin', amount: 10.42, value: 40, id: 'ltc-usd' }, ...
]
对于 React 程序员:
要在 React 中使用新的 FlatList 组件,您需要提供一个对象数组
<FlatList
data={[{key: 'a'}, {key: 'b'}]}
renderItem={({item}) => <Text>{item.key}</Text>}
/>
我使用了几个存储不同类型的加密货币数据的 reducer。Reducer1 商店价格:
'btc-usd' : 2640,'ltc-usd': 40`
Reducer2 存储您拥有的加密货币数量:
'btc-usd': 2.533,'ltc-usd': 10.42
我的目标是遍历这些值并创建一个对象数组,例如
[ { name: 'Bitcoin', amount: 2.533, value: 2640, id: 'btc-usd' },
{ name: 'Litecoin', amount: 10.42, value: 40, id: 'ltc-usd' }, ...
]
到目前为止,我认为正确的方法是在选择器中重新选择。缺少的部分是 createSelector 中的 lodash 部分。令人惊讶的是,我在互联网上没有找到任何结合 lodash 和 FlatList 的东西。非常感谢您的帮助。
import { createSelector } from 'reselect';
import _ from 'lodash';
export const selectRate = (state) => state.rate;
export const selectCryptoBalance = (state) => state.cryptoBalance;
export const createCoinArray = createSelector(
selectRate, selectCryptoBalance,
(rate, cryptoBalance) => {
const coinArray = []; //better load array from state?
//IMPROVEMENT NEEDED HERE
_.forIn(selectRate, () => {
coinArray.push(_.assign({ [selectRate.id]: 0 }, cryptoBalance));
console.log('coinArray in loop ', coinArray);
});
return coinArray;
}
);
解决方案奏效!更多解决方案在这里生成不同对象Javascript的对象数组 感谢您的帮助!很多 React 用户会喜欢