ReactJS UI Ant Design Radio 组件
Ant Design Library 已经预先构建了这个组件,并且它也很容易集成。 Radio Component 允许用户从一组选项中选择一个选项。我们可以在 ReactJS 中使用以下方法来使用 Ant Design Radio 组件。
无线电方法:
- blur():此方法用于从元素中移除焦点。
- focus():该方法用于获取元素的焦点。
电台道具:
- autoFocus:用于在组件挂载时获取焦点。
- 选中:表示是否选择了电台。
- defaultChecked:用于指定无线电是否被选中的初始状态。
- disabled:用于禁用无线电。
- value:用于表示被选中的单选按钮的值。
RadioGroup 道具:
- buttonStyle:用于表示单选按钮的样式类型。
- defaultValue:用于定义单选按钮的默认选择值。
- disabled:用于禁用所有单选按钮。
- name:用于定义所有radio类型的输入子项的名称属性。
- options:用于设置子选项。
- optionType:用于指定收音机的选项类型。
- size:用于表示收音机的大小。
- value:用于设置当前选择的值。
- onChange:状态改变时触发的回调函数。
创建 React 应用程序并安装模块:
第 1 步:使用以下命令创建一个 React 应用程序:
npx create-react-app foldername
第 2 步:创建项目文件夹(即文件夹名称)后,使用以下命令移动到该文件夹:
cd foldername
第 3 步:创建 ReactJS 应用程序后,安装 必需的 模块使用以下命令:
npm install antd
项目结构:它将如下所示。
示例:现在在App.js文件中写下以下代码。在这里,App 是我们编写代码的默认组件。
App.js
import React, { useState } from 'react'
import "antd/dist/antd.css";
import { Radio } from 'antd';
export default function App() {
const [currentValue, setCurrentValue] = useState("Goa")
return (
ReactJS Ant-Design Radio Component
{
setCurrentValue(e.target.value)
}} value={currentValue}>
Goa
MP
Delhi
UP
Current Selected Option: {currentValue}
);
}
运行应用程序的步骤:从项目的根目录使用以下命令运行应用程序:
npm start
输出:现在打开浏览器并转到http://localhost:3000/ ,您将看到以下输出:
参考: https://ant.design/components/radio/