我正在制作日期计算器,我的一个条件不起作用:
{(parseInt(this.state.monthInit, 10) > 9 ?
<Text style={{ color: 'white' }}>Stuff happens</Text> :
<Text style={{ color: 'white' }}>Different stuff happens</Text> }
返回错误Unexpected token 167:69
,它位于最后一个括号之前。
monthInit来自:
<TextInput
style={{height: 35, width: 30, textAlign: 'center'}}
keyboardType = 'numeric'
onChangeText={(monthInit) => this.setState({monthInit})}
value={this.state.monthInit}
placeholder="MM"
maxLength = {2}
/>