ant-design/components/checkbox/demo/group.md

56 lines
1.2 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
2016-08-18 11:22:55 +08:00
title:
2019-05-07 14:57:32 +08:00
zh-CN: Checkbox 组
en-US: Checkbox Group
2016-03-31 09:40:55 +08:00
---
2015-12-24 15:03:06 +08:00
2016-08-18 11:22:55 +08:00
## zh-CN
方便的从数组生成 Checkbox 组。
2015-12-24 15:03:06 +08:00
2016-08-18 11:22:55 +08:00
## en-US
Generate a group of checkboxes from an array.
```tsx
2015-12-24 15:03:06 +08:00
import { Checkbox } from 'antd';
import type { CheckboxValueType } from 'antd/es/checkbox/Group';
2022-05-23 14:37:16 +08:00
import React from 'react';
2018-06-27 15:55:04 +08:00
const onChange = (checkedValues: CheckboxValueType[]) => {
2015-12-24 15:03:06 +08:00
console.log('checked = ', checkedValues);
};
2015-12-24 15:03:06 +08:00
const plainOptions = ['Apple', 'Pear', 'Orange'];
const options = [
2016-08-18 11:22:55 +08:00
{ label: 'Apple', value: 'Apple' },
{ label: 'Pear', value: 'Pear' },
{ label: 'Orange', value: 'Orange' },
];
const optionsWithDisabled = [
2016-08-18 11:22:55 +08:00
{ label: 'Apple', value: 'Apple' },
{ label: 'Pear', value: 'Pear' },
{ label: 'Orange', value: 'Orange', disabled: false },
];
const App: React.FC = () => (
<>
<Checkbox.Group options={plainOptions} defaultValue={['Apple']} onChange={onChange} />
2019-05-07 14:57:32 +08:00
<br />
<br />
<Checkbox.Group options={options} defaultValue={['Pear']} onChange={onChange} />
2019-05-07 14:57:32 +08:00
<br />
<br />
<Checkbox.Group
2019-05-07 14:57:32 +08:00
options={optionsWithDisabled}
disabled
defaultValue={['Apple']}
onChange={onChange}
/>
</>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```