You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
order: 10
|
|
|
|
title:
|
|
|
|
zh-CN: 自定义字段名
|
|
|
|
en-US: Custom Field Names
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
自定义字段名。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Custom field names.
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
import { Cascader } from 'antd';
|
|
|
|
|
|
|
|
const options = [{
|
|
|
|
code: 'zhejiang',
|
|
|
|
name: 'Zhejiang',
|
|
|
|
items: [{
|
|
|
|
code: 'hangzhou',
|
|
|
|
name: 'Hangzhou',
|
|
|
|
items: [{
|
|
|
|
code: 'xihu',
|
|
|
|
name: 'West Lake',
|
|
|
|
}],
|
|
|
|
}],
|
|
|
|
}, {
|
|
|
|
code: 'jiangsu',
|
|
|
|
name: 'Jiangsu',
|
|
|
|
items: [{
|
|
|
|
code: 'nanjing',
|
|
|
|
name: 'Nanjing',
|
|
|
|
items: [{
|
|
|
|
code: 'zhonghuamen',
|
|
|
|
name: 'Zhong Hua Men',
|
|
|
|
}],
|
|
|
|
}],
|
|
|
|
}];
|
|
|
|
|
|
|
|
function onChange(value) {
|
|
|
|
console.log(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Cascader fieldNames={{ label: 'name', value: 'code', children: 'items' }} options={options} onChange={onChange} placeholder="Please select" />,
|
|
|
|
mountNode
|
|
|
|
);
|
|
|
|
````
|