mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
69 lines
1.3 KiB
Markdown
69 lines
1.3 KiB
Markdown
---
|
|
order: 3.2
|
|
version: 4.17.0
|
|
title:
|
|
zh-CN: 非阻塞校验
|
|
en-US: No block rule
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
`rule` 添加 `warningOnly` 后校验不再阻塞表单提交。
|
|
|
|
## en-US
|
|
|
|
`rule` with `warningOnly` will not block form submit.
|
|
|
|
```tsx
|
|
import React from 'react';
|
|
import { Form, Input, message, Button, Space } from 'antd';
|
|
|
|
const Demo = () => {
|
|
const [form] = Form.useForm();
|
|
|
|
const onFinish = () => {
|
|
message.success('Submit success!');
|
|
};
|
|
|
|
const onFinishFailed = () => {
|
|
message.error('Submit failed!');
|
|
};
|
|
|
|
const onFill = () => {
|
|
form.setFieldsValue({
|
|
url: 'https://taobao.com/',
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Form
|
|
form={form}
|
|
layout="vertical"
|
|
onFinish={onFinish}
|
|
onFinishFailed={onFinishFailed}
|
|
autoComplete="off"
|
|
>
|
|
<Form.Item
|
|
name="url"
|
|
label="URL"
|
|
rules={[{ required: true }, { type: 'url', warningOnly: true }, { type: 'string', min: 6 }]}
|
|
>
|
|
<Input placeholder="input placeholder" />
|
|
</Form.Item>
|
|
<Form.Item>
|
|
<Space>
|
|
<Button type="primary" htmlType="submit">
|
|
Submit
|
|
</Button>
|
|
<Button htmlType="button" onClick={onFill}>
|
|
Fill
|
|
</Button>
|
|
</Space>
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
ReactDOM.render(<Demo />, mountNode);
|
|
```
|