react
文章平均质量分 73
shelleyHLX
这个作者很懒,什么都没留下…
展开
-
react-typescript 错误
@types/jsurl/index.d.ts' is not a module.npm i jsurl 安装错误,因为 typescript无法用此方法安装,卸载干净。1. 增加types目录新建jsurl.d.ts文件,写入:declare module 'jsurl' { type Nullable<T> = T | null | undefined; export function stringify(input: any): string; expor原创 2022-04-08 14:06:17 · 794 阅读 · 0 评论 -
react antd modal学习
对象的使用:[] 调用属性传参:函数调用传参,就是调用函数,而不是一个函数,需要变成函数。modal的各种属性的使用:title visible onCancel okTextcancelText wrapClassNameimport React from "react";import {Card, Button, Modal} from "antd";import './ui.less'// × 和 cancel 是同一个事件export default cla...原创 2022-02-16 09:34:54 · 1080 阅读 · 0 评论 -
react+ts button组件
需求按钮有两种标签:a 和 button使用到 classnames这个插件https://www.npmjs.com/package/classnameshttps://www.npmjs.com/package/classnameshttps://github.com/JedWatson/classnameshttps://github.com/JedWatson/classnames颜色各个按钮的颜色:中国色 - 中国传统颜色http://zhongguose.com/#d原创 2022-02-08 17:07:47 · 985 阅读 · 0 评论 -
React系列十一 - React中的CSS
源自:coderwhy前面说过,整个前端已经是组件化的天下,而CSS的设计就不是为组件化而生的,所以在目前组件化的框架中都在需要一种合适的CSS解决方案。一. React中的css方案1.1. react中的css事实上,css一直是React的痛点,也是被很多开发者吐槽、诟病的一个点。在组件化中选择合适的CSS解决方案应该符合以下条件:可以编写局部css:css具备自己的具备作用域,不会随意污染其他组件内的原生; 可以编写动态的css:可以获取当前组件的一些状态,根据状态的变化生转载 2022-01-29 14:34:40 · 6561 阅读 · 0 评论 -
react报错:Can‘t perform a React state update on an unmounted component
Warning: Can't perform a React state update on an unmounted component. This is a no-op, but it indic在React开发中,我们可能经常会遇到这个一个警告: Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in you.转载 2022-01-28 16:25:05 · 5205 阅读 · 0 评论 -
React+Redux交互式用户界面
入门前端开发 将React添加到网站 创建React应用程序 课程项目 模块测试React简介JSX 虚拟DOM Components(成分) Props(道具) State(状态) Hooks(挂钩) 生命周期方法(Lifecycle Methods) 处理事件(handling Event) 渲染列表 Contact Manager 模块测试Redux介绍状态管理 核心概念 Action reducers(减数机) Redux with Re原创 2022-01-14 15:46:04 · 821 阅读 · 0 评论 -
React 入门课程-声明周期函数-受控表单input select radio textarea checkbox
第一章 接触React第一节 React概述 第二节 使用 React第二章 元素渲染第一节 React 元素 第二节 将 React 元素渲染为 DOM第三章 JSX第一节 从本质上了解JSX 第二节 JSX的使用 第三节 JSX的属性第四章 组件与 props 属性第一节 组件类型及渲染方式 第二节 灵活使用组件(上) 第三节 灵活使用组件(下) 第四节 props 属性重现第五章 事件处理第一节 事件绑定的方式 第二节 向事件处理程序传递参数第六章 组件的原创 2022-01-13 11:11:52 · 286 阅读 · 0 评论