如何转换这一系列水果,
['Apple','Banana','Orange','Peach']
到具有相同键的对象数组
[{
name: 'Apple',
},{
name: 'Banana',
},{
name: 'Orange'
},{
name: 'Peach'
}]
答案 0 :(得分:5)
您可以将onStartScrollList = () => {
this.setState({ isListScrolled: true });
console.log('onScrollList');
}
onStopScrollList = () => {
console.log('onStopScrollList');
this.setState({ isListScrolled: false });
}
与对象的简写属性一起使用。
array#map