【发布时间】:2020-11-06 16:41:29
【问题描述】:
为什么我有一个红色的错误标记这个关键字后面的点?它说(意外的关键字“这个”)
render() {
return (
<TouchableOpacity onPress={() => this.selectionOnPress({this.props.detail.country})}>
<Text style={[styles.btnSV, {
backgroundColor:
this.state.selectedButton === {this.props.detail.country} ? "red" : "grey"
}]}>
<Text style={styles.btnSV}>{this.props.detail.country}</Text>
</Text>
</TouchableOpacity>
);
}}
【问题讨论】:
-
当你将鼠标悬停在它上面时它会说什么?
-
@Nathan 它说(意外的关键字“这个”)
标签: javascript html reactjs react-native jsx