我想使用通知来推送表单反馈,而不是内联消息。例如
<Form.Item label="Name">
{getFieldDecorator("name", {
rules: [
{
validator(rule, value, callback) {
if (!value) {
callback("Enter Your Name");
// I'd like to use this instead:
// notification.open({
// message: "Enter Your Name",
// description:
// 'This is the content of the notification.',
// })
}
callback();
}
}
]
})(<Name />)}
</Form.Item>;
border-color
是否可以在没有内联消息的情况下验证表单字段并保持视觉反馈(即变化之类的东西)?