我试图使用内联if语句来检查是否存在一个数据,以及是否显示它.此代码当前位于我的渲染,返回块中.
我遇到的问题是使用它,内容不再呈现
{(() => { if (this.props.data.size) { <Text style={styles.headerLabel}>Sizes</Text> {(this.props.data.size||[]).map((section,i) => ( <AddToCartRow key={i} data={section} productName={this.props.data.name} value={Config.priceToPriceWithCurrency(section.price)} /> ))} } })()}
render(){ return( <View> {this.state.error && <Text style={{ color: 'red' }}>{this.state.errorMessage}</Text>} <Text>Hello World!</Text> </View> ); }
你去吧