React:根据条件

时间:2018-04-04 21:16:04

标签: reactjs react-native redux react-router

在反应中我们如何根据条件设置值。单选按钮仅用于可视化表示。这些值不会保存在数据库中,也不会从数据库中读取。

例如,我需要根据另一个值customerService.onField检查无线电(sales-team-yes)是否为空。



<div className="col-xs-2">
                <div className="field-label">Sales Team?</div>
                <Field
                    id="sales-team-yes"
                    label="Yes"
                    /* name="salesTeam" */
                    component={RadioField}
                    type="radio"
                    checked={customerService.onField != null ? true : false}
                   /* value={customerService.onField != null ? true : false}*/
                    readOnly
                    disabled/>
                <Field
                    id="sales-team-no"
                    label="No"
                   /* name="salesTeam" */
                    component={RadioField}
                    type="radio"
                    checked={customerService.onField == null ? false : true}
                   /* value={customerService.onField != null ? true : false}*/
                    readOnly
                    disabled/>
                </div>
 </div>
&#13;
&#13;
&#13;

0 个答案:

没有答案