如何在react-select v2中创建optgroup?

时间:2018-09-25 17:26:27

标签: javascript reactjs react-select

我希望在我的react-select列表中有optgroup,但是似乎没有任何地方记录它。我具有以下结构,这些结构是我从https://github.com/JedWatson/react-select/issues/59中的注释中提取的:

render() {
  const options = [
    {
      label: "Group 1",
      children: [
        { label: "Group 1, option 1", value: "value_1" },
        { label: "Group 1, option 2", value: "value_2" }
      ]
    },
    { label: "A root option", value: "value_3" },
    { label: "Another root option", value: "value_4" }
  ];
  return <Select options={options} />
}

我希望“组1”是一个optgroup,选项1和2作为子级。而是,“组1”仅作为常规选项出现。有谁知道“ Group 1”中将其变成optgroup的正确密钥是什么?

我已经尝试过“孩子”和“值”,但是没有效果。

1 个答案:

答案 0 :(得分:11)

选项是魔术键:

make -j

这符合我的期望。