第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定

AntDesign-Form-rules入門:輕松掌握表單校驗(yàn)規(guī)則

標(biāo)簽:
雜七雜八
概述

AntDesign-Form-rules入门指南带你探索Ant Design库中强大的表单验证功能,通过简洁的代码示例,让你快速掌握如何为表单字段配置验证规则,确保用户输入数据的有效性与一致性。利用Ant Design库构建的前端开发工具,提供高效、美观的表单交互体验,助力你的项目快速上手。

引入 Ant Design 和 Form 组件

构建现代用户界面时,表单处理成为不可或缺的组成部分。作为基于React的高保真组件库,Ant Design提供了一系列高质量的UI组件,旨在帮助开发者以高效、美观的方式构建网页应用。其核心组件Form专注于管理表单数据,简化了表单处理逻辑,并集成了一系列强大的验证功能,确保用户输入数据符合预期。

若需将Ant Design集成至项目中,请执行以下命令:

npm install antd

了解 Form-rules

在Ant Design体系中,Form-rules是关键特性,它赋予表单组件验证数据合法性、确保输入一致性的重要能力。通过Form-rules,开发者能够定义并应用到Form组件上的验证规则,有效防止无效或错误数据的提交。

要开始利用Form-rules,请在项目中引入对应组件:

import { Form, Button, Input, message } from 'antd';
import { UserOutlined, LockOutlined } from '@ant-design/icons';

基础用法

下面的示例代码展现了一个简单的表单结构,其中通过rules属性定义了Form中各字段的验证规则。每个规则对象包含requiredmessage两个主要属性,required指示字段是否为必填;message则在验证失败时提供具体的错误提示信息。

const onFinish = (values) => {
  console.log('Received values of form: ', values);
  message.success('Form submitted successfully!');
};

const App = () => {
  return (
    <Form
      name="normal_login"
      className="login-form"
      initialValues={{ remember: true }}
      onFinish={onFinish}
    >
      <Form.Item
        name="username"
        rules={[
          {
            required: true,
            message: 'Please input your Username!',
          },
        ]}
      >
        <Input
          prefix={<UserOutlined />}
          placeholder="Username"
        />
      </Form.Item>
      <Form.Item
        name="password"
        rules={[
          {
            required: true,
            message: 'Please input your Password!',
          },
        ]}
      >
        <Input
          prefix={<LockOutlined />}
          type="password"
          placeholder="Password"
        />
      </Form.Item>
      <Form.Item>
        <Button type="primary" htmlType="submit">
          Log in
        </Button>
      </Form.Item>
    </Form>
  );
};

export default App;

全局与局部规则使用

在实际应用中,有时需要对多个字段设定统一的验证规则,有时则需为特定字段提供更精细的验证逻辑。Ant Design提供了全局与局部规则的概念,以适应不同场景下的验证需求。

全局规则通常在Form.create()Form.Item配置中定义,适用于所有表单字段的验证:

<Form>
  <Form.Item rules={[{ required: true, message: 'Please input your Name!' }]}>
    <Input placeholder="Name" />
  </Form.Item>
  {/* 更多 Field */}
</Form>

而局部规则则在每个具体的表单项中定义,允许为特定字段提供定制化的验证逻辑:

<Form.Item name="username" rules={[{ required: true, message: 'Please input your Username!' }]}>
  <Input placeholder="Username" />
</Form.Item>

自定义错误消息与样式

在处理表单验证时,有时会遇到特定情况需要自定义错误消息,Ant Design通过errors属性提供访问验证错误信息的方式,使其能够实现动态错误消息的显示。此外,normalizeName属性支持调整表单字段名,以适应不同设计要求和样式需要。

实战演练:构建一个完整的表单验证应用

构建一个包含用户名、密码、确认密码、邮箱和电话号码验证的注册表单,我们可以集成特定的验证规则如下:

import { Form, Button, Input, message } from 'antd';

const onFinish = (values) => {
  console.log('Received values of form: ', values);
  message.success('Form submitted successfully!');
};

const App = () => {
  return (
    <Form
      name="registration"
      initialValues={{ isAgree: false }}
      onFinish={onFinish}
    >
      <Form.Item
        name="username"
        rules={[
          { required: true, message: 'Please input your Username!' },
          { max: 20, message: 'Username should not exceed 20 characters!' },
        ]}
      >
        <Input placeholder="Username" />
      </Form.Item>
      <Form.Item
        name="password"
        rules={[
          { required: true, message: 'Please input your Password!' },
          { min: 6, message: 'Password must be at least 6 characters long!' },
        ]}
      >
        <Input.Password placeholder="Password" />
      </Form.Item>
      <Form.Item
        name="confirmPassword"
        dependencies={['password']}
        hasFeedback
        rules={[
          { required: true, message: 'Please confirm your Password!' },
          ({ getFieldValue }) => ({
            validator(_, value) {
              if (!value || getFieldValue('password') === value) {
                return Promise.resolve();
              }
              return Promise.reject(new Error('Password confirmation does not match!'));
            },
          }),
        ]}
      >
        <Input.Password placeholder="Confirm Password" />
      </Form.Item>
      <Form.Item
        name="email"
        rules={[
          { type: 'email', message: 'Please input a valid email address!' },
          { required: true, message: 'Please input your Email Address!' },
        ]}
      >
        <Input placeholder="Email" />
      </Form.Item>
      <Form.Item
        name="phone"
        rules={[
          { pattern: /^[1][3-9]\d{9}$/, message: 'Please input a valid phone number!' },
          { required: true, message: 'Please input your Phone Number!' },
        ]}
      >
        <Input placeholder="Phone Number" />
      </Form.Item>
      <Form.Item>
        <Button type="primary" htmlType="submit">
          Register
        </Button>
      </Form.Item>
    </Form>
  );
};

export default App;

通过上述代码示例和指南,你不仅掌握了如何在Ant Design中使用Form-rules创建和管理表单验证规则,还学会了通过灵活运用全局与局部规则、自定义错误消息与样式,构建出更加丰富且易于维护的表单验证应用。在实践中,结合这些原则与技巧,你将能够构建出既高效又美观的表单验证机制,提升用户体验和数据质量。

點(diǎn)擊查看更多內(nèi)容
TA 點(diǎn)贊

若覺得本文不錯(cuò),就分享一下吧!

評(píng)論

作者其他優(yōu)質(zhì)文章

正在加載中
  • 推薦
  • 評(píng)論
  • 收藏
  • 共同學(xué)習(xí),寫下你的評(píng)論
感謝您的支持,我會(huì)繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會(huì)直接到老師賬戶
支付方式
打開微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊有機(jī)會(huì)得

100積分直接送

付費(fèi)專欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會(huì)
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)

舉報(bào)

0/150
提交
取消