我正试图通过this.props.item
,所以我可以用它执行一些操作但是我无法这样做,它给了我错误:Invalid left-hand side in arrow function parameters
。它正在运行一个数组,因此它实际上具有值
<TouchableOpacity onPress={(this.props.item) => {
//Do something with value here
}}
>
我也不幸地尝试过这种方式
<TouchableOpacity onPress={this.props.item => {
//Do something with value here
}}
>
请写这个的正确方法是什么?
答案 0 :(得分:1)
可能你正在寻找像这样的东西
<TouchableOpacity onPress={() => {
console.log(this.props.item)
}}
>