mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
50 lines
795 B
Markdown
50 lines
795 B
Markdown
|
---
|
||
|
order: 99
|
||
|
title:
|
||
|
zh-CN: Dep Debug
|
||
|
en-US: Dep Debug
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
Buggy!
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Buggy!
|
||
|
|
||
|
```tsx
|
||
|
import { Form, Input } from 'antd';
|
||
|
|
||
|
let acc = 0;
|
||
|
|
||
|
const Demo = () => {
|
||
|
const [form] = Form.useForm();
|
||
|
return (
|
||
|
<Form
|
||
|
form={form}
|
||
|
name="debug"
|
||
|
initialValues={{
|
||
|
debug1: 'debug1',
|
||
|
debug2: 'debug2',
|
||
|
}}
|
||
|
>
|
||
|
<Form.Item noStyle dependencies={['debug1']}>
|
||
|
{() => {
|
||
|
return acc++;
|
||
|
// return <pre>{JSON.stringify(form.getFieldsValue(), null, 2)}</pre>;
|
||
|
}}
|
||
|
</Form.Item>
|
||
|
<Form.Item label="debug1" name="debug1">
|
||
|
<Input />
|
||
|
</Form.Item>
|
||
|
<Form.Item label="debug2" name="debug2">
|
||
|
<Input />
|
||
|
</Form.Item>
|
||
|
</Form>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
ReactDOM.render(<Demo />, mountNode);
|
||
|
```
|