|
|
|
---
|
|
|
|
order: 3
|
|
|
|
title:
|
|
|
|
zh-CN: Checkbox 组
|
|
|
|
en-US: Checkbox Group
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
方便的从数组生成 Checkbox 组。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Generate a group of checkboxes from an array.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Checkbox } from 'antd';
|
|
|
|
|
|
|
|
function onChange(checkedValues) {
|
|
|
|
console.log('checked = ', checkedValues);
|
|
|
|
}
|
|
|
|
|
|
|
|
const plainOptions = ['Apple', 'Pear', 'Orange'];
|
|
|
|
const options = [
|
|
|
|
{ label: 'Apple', value: 'Apple' },
|
|
|
|
{ label: 'Pear', value: 'Pear' },
|
|
|
|
{ label: 'Orange', value: 'Orange' },
|
|
|
|
];
|
|
|
|
const optionsWithDisabled = [
|
|
|
|
{ label: 'Apple', value: 'Apple' },
|
|
|
|
{ label: 'Pear', value: 'Pear' },
|
|
|
|
{ label: 'Orange', value: 'Orange', disabled: false },
|
|
|
|
];
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<Checkbox.Group options={plainOptions} defaultValue={['Apple']} onChange={onChange} />
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<Checkbox.Group options={options} defaultValue={['Pear']} onChange={onChange} />
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<Checkbox.Group
|
|
|
|
options={optionsWithDisabled}
|
|
|
|
disabled
|
|
|
|
defaultValue={['Apple']}
|
|
|
|
onChange={onChange}
|
|
|
|
/>
|
|
|
|
</div>,
|
|
|
|
mountNode,
|
|
|
|
);
|
|
|
|
```
|