iis服务器助手广告广告
返回顶部
首页 > 资讯 > 精选 >react常见的ts类型怎么定义
  • 521
分享到

react常见的ts类型怎么定义

2023-07-06 04:07:18 521人浏览 安东尼
摘要

本篇内容主要讲解“React常见的ts类型怎么定义”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“react常见的ts类型怎么定义”吧!一个函数组件import React f

本篇内容主要讲解“React常见的ts类型怎么定义”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“react常见的ts类型怎么定义”吧!

import React from "react";type Props = {}const Header: React.FC<Props> = (props) => {  return (<>    <div>header</div>    {props.children}  </>)}

我们注意在Header组件中有使用到props.children如果Props没有申明类型那么此时就会报这样的错误

react常见的ts类型怎么定义

此时我们需要加个类型就行,并且children是可选的

import React from "react";interface Props {  children?: React.Reactnode;}

除了children,有时我想给Header组件传入一个className,并且是可选的

import React from "react";type Props = { children?: React.ReactNode; className?: string;}const Header: React.FC<Props> = (props) => {  const { className } = props;  return (<>    <div className={`App-header ${className}`}>header</div>    {props.children}  </>)}

Props我们似乎对每一个可选项都有做?可选,有没有一劳永逸的办法

Partial<T>所有属性都是可选

import React from "react";type Props = { children: React.ReactNode; className: string;}const Header: React.FC<Partial<Props>> = (props) => {  const { className = '' } = props;  return (<>    <div className={`App-header ${className}`}>header</div>    {props.children}  </>)}

在以上我们给Props申明了一个children?: React.ReactNode,如果你不想这么写,react也提供了一个属性PropsWithChildren

interface ChildProps {}export const SubHeader: React.FC = (  props: PropsWithChildren<{}> & Partial<ChildProps>) => {  return <div className={`sub-header`}>{props.children}</div>;};

在dom节点上的类型

import React, { PropsWithChildren, useRef } from "react";const Input: React.FC = () => {  const inputRef = useRef<htmlInputElement>(null);  const sureRef = useRef<HTMLDivElement>(null);  return (    <>      <input type="text" ref={inputRef} />      <div ref={sureRef}>确定</div>    </>  );};

传入子组件的方法

我想传入一个方法到子组件里去

type InputProps = {  onSure: () => void;};const Input: React.FC<InputProps> = (props) => {  const inputRef = useRef<HTMLInputElement>(null);  const sureRef = useRef<HTMLDivElement>(null);  return (    <>      <input type="text" ref={inputRef} />      <div ref={sureRef} onClick={props?.onSure}>        确定      </div>    </>  );};const Index: React.FC<Partial<Props>> = (props) => {  const { className } = props;  const handleSure = () => {};  return (    <header className={`App-header ${className}`}>      <Input onSure={handleSure} />      {props.children}    </header>  );};

!非空断言,一定有该方法或者属性

  const body = document!.getElementsByTagName("body")[0];  body.addEventListener("click", () => {    console.log("body");  });

一个doms上的类型

sure按钮上用ref绑定一个dom

const Input: React.FC<InputProps> = (props) => {  const inputRef = useRef<HTMLInputElement>(null);  const sureRef = useRef(null);  const body = document!.getElementsByTagName("body")[0];  body.addEventListener("click", () => {    console.log(sureRef.current?.style);    console.log("body");  });  return (    <>      <input type="text" ref={inputRef} />      <div ref={sureRef} onClick={props?.onSure}>        确定      </div>    </>  );};

react常见的ts类型怎么定义

此时我们需要给sureRef申明类型,并且?访问可选属性

const inputRef = useRef<HTMLInputElement>(null);const sureRef = useRef<HTMLDivElement>(null);const body = document!.getElementsByTagName("body")[0];body.addEventListener("click", () => {  console.log(sureRef.current?.style);  console.log("body");});

导入一个组件需要的多个类型

// userInterfence.tsexport type UserInfo = {  name: string;  age: number;};export type Menu = {  title: string;  price: number;  isChecked: boolean;  items: Array<{    name: string;    price: number;  }>;};

在另外一个组件引入

import type { UserInfo, Menu } from "./userInterfence";const Input: React.FC<InputProps> = (props) => {  const [userInfo, setUserInfo] = useState<UserInfo>({    name: "WEB技术学苑",    age: 10,  });  const inputRef = useRef<HTMLInputElement>(null);  const sureRef = useRef<HTMLDivElement>(null);  const body = document!.getElementsByTagName("body")[0];  body.addEventListener("click", () => {    console.log(sureRef.current?.style);    console.log("body");  });  return (    <>      <input type="text" ref={inputRef} value={userInfo.name} />      <input type="text" value={userInfo.age} />      <div ref={sureRef} onClick={props?.onSure}>        确定      </div>    </>  );};

react常见的ts类型怎么定义

选择一个组件的指定的几个属性

在两个类似的组件,我们有一些公用的属性,此时我们的类型可以借用Omit去掉一些不需要的属性类型

import type { UserInfo, Menu } from "./userInterfence";const MenuComp: React.FC<Omit<Menu, "items" | "isChecked">> = (props) => {  return (    <>      <p>{props.price}</p>      <p>{props.title}</p>    </>  );};

header组件中引入

<header className={`App-header ${className}`}>    <MenuComp price={10} title={"menuA"} />    {props.children}  </header>

或者你可以使用Pick来选择指定的属性

import type { UserInfo, Menu } from "./userInterfence";const MenuSubComp: React.FC<Pick<Menu, "items">> = (props) => {  return (    <>      <p>{props.items[0].name}</p>      <p>{props.items[0].price}</p>    </>  );};

另一个组件中使用

const Index: React.FC<Partial<Props>> = (props) => {  const { className } = props;  const subInfo: Pick<Menu, "items"> = {    items: [      {        name: "Web技术学苑",        price: 10,      },    ],  };  return (    <header className={`App-header ${className}`}>      <MenuComp price={10} title={"menuA"} />      <MenuSubComp items={subInfo.items} />      {props.children}    </header>  );};

到此,相信大家对“react常见的ts类型怎么定义”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

--结束END--

本文标题: react常见的ts类型怎么定义

本文链接: https://www.lsjlt.com/news/357762.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
  • C++ 生态系统中流行库和框架的贡献指南
    作为 c++++ 开发人员,通过遵循以下步骤即可为流行库和框架做出贡献:选择一个项目并熟悉其代码库。在 issue 跟踪器中寻找适合初学者的问题。创建一个新分支,实现修复并添加测试。提交...
    99+
    2024-05-15
    框架 c++ 流行库 git
  • C++ 生态系统中流行库和框架的社区支持情况
    c++++生态系统中流行库和框架的社区支持情况:boost:活跃的社区提供广泛的文档、教程和讨论区,确保持续的维护和更新。qt:庞大的社区提供丰富的文档、示例和论坛,积极参与开发和维护。...
    99+
    2024-05-15
    生态系统 社区支持 c++ overflow 标准库
  • c++中if elseif使用规则
    c++ 中 if-else if 语句的使用规则为:语法:if (条件1) { // 执行代码块 1} else if (条件 2) { // 执行代码块 2}// ...else ...
    99+
    2024-05-15
    c++
  • c++中的继承怎么写
    继承是一种允许类从现有类派生并访问其成员的强大机制。在 c++ 中,继承类型包括:单继承:一个子类从一个基类继承。多继承:一个子类从多个基类继承。层次继承:多个子类从同一个基类继承。多层...
    99+
    2024-05-15
    c++
  • c++中如何使用类和对象掌握目标
    在 c++ 中创建类和对象:使用 class 关键字定义类,包含数据成员和方法。使用对象名称和类名称创建对象。访问权限包括:公有、受保护和私有。数据成员是类的变量,每个对象拥有自己的副本...
    99+
    2024-05-15
    c++
  • c++中优先级是什么意思
    c++ 中的优先级规则:优先级高的操作符先执行,相同优先级的从左到右执行,括号可改变执行顺序。操作符优先级表包含从最高到最低的优先级列表,其中赋值运算符具有最低优先级。通过了解优先级,可...
    99+
    2024-05-15
    c++
  • c++中a+是什么意思
    c++ 中的 a+ 运算符表示自增运算符,用于将变量递增 1 并将结果存储在同一变量中。语法为 a++,用法包括循环和计数器。它可与后置递增运算符 ++a 交换使用,后者在表达式求值后递...
    99+
    2024-05-15
    c++
  • c++中a.b什么意思
    c++kquote>“a.b”表示对象“a”的成员“b”,用于访问对象成员,可用“对象名.成员名”的语法。它还可以用于访问嵌套成员,如“对象名.嵌套成员名.成员名”的语法。 c++...
    99+
    2024-05-15
    c++
  • C++ 并发编程库的优缺点
    c++++ 提供了多种并发编程库,满足不同场景下的需求。线程库 (std::thread) 易于使用但开销大;异步库 (std::async) 可异步执行任务,但 api 复杂;协程库 ...
    99+
    2024-05-15
    c++ 并发编程
  • 如何在 Golang 中备份数据库?
    在 golang 中备份数据库对于保护数据至关重要。可以使用标准库中的 database/sql 包,或第三方包如 github.com/go-sql-driver/mysql。具体步骤...
    99+
    2024-05-15
    golang 数据库备份 mysql git 标准库
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作