我在React中有一个函数,它以复选框的形式呈现选项。 我想通过将其附加到此列表来添加另一个选项。
我的渲染功能
typeof this.state.vendorsOccasionTypesList != 'undefined'
? this.state.vendorsOccasionTypesList.map(function(row, i) {
if (
row.ifActive == '1' &&
row.cityId == that.props.sessionData.CityId
) {
var mainName = row.name;
var id = row.contractorVendorsTypeId;
var mainName1 = mainName.replace('BookEventZ', '');
options.push({ value: id, label: mainName1 });
options.concat({ value: 57, label: 'mainName1' });
}
}, this)
: null;