- ReactJS 教程
- ReactJS - 首页
- ReactJS - 简介
- ReactJS - 路线图
- ReactJS - 安装
- ReactJS - 特性
- ReactJS - 优点与缺点
- ReactJS - 架构
- ReactJS - 创建 React 应用
- ReactJS - JSX
- ReactJS - 组件
- ReactJS - 嵌套组件
- ReactJS - 使用新创建的组件
- ReactJS - 组件集合
- ReactJS - 样式
- ReactJS - 属性 (props)
- ReactJS - 使用属性创建组件
- ReactJS - props 验证
- ReactJS - 构造函数
- ReactJS - 组件生命周期
- ReactJS - 事件管理
- ReactJS - 创建一个事件感知组件
- ReactJS - 在 Expense Manager 应用中引入事件
- ReactJS - 状态管理
- ReactJS - 状态管理 API
- ReactJS - 无状态组件
- ReactJS - 使用 React Hooks 进行状态管理
- ReactJS - 使用 React Hooks 的组件生命周期
- ReactJS - 布局组件
- ReactJS - 分页
- ReactJS - Material UI
- ReactJS - Http 客户端编程
- ReactJS - 表单编程
- ReactJS - 受控组件
- ReactJS - 非受控组件
- ReactJS - Formik
- ReactJS - 条件渲染
- ReactJS - 列表
- ReactJS - Keys
- ReactJS - 路由
- ReactJS - Redux
- ReactJS - 动画
- ReactJS - Bootstrap
- ReactJS - Map
- ReactJS - 表格
- ReactJS - 使用 Flux 管理状态
- ReactJS - 测试
- ReactJS - CLI 命令
- ReactJS - 构建和部署
- ReactJS - 示例
- Hooks
- ReactJS - Hooks 简介
- ReactJS - 使用 useState
- ReactJS - 使用 useEffect
- ReactJS - 使用 useContext
- ReactJS - 使用 useRef
- ReactJS - 使用 useReducer
- ReactJS - 使用 useCallback
- ReactJS - 使用 useMemo
- ReactJS - 自定义 Hooks
- ReactJS 高级
- ReactJS - 可访问性
- ReactJS - 代码分割
- ReactJS - Context
- ReactJS - 错误边界
- ReactJS - 转发 Refs
- ReactJS - 片段
- ReactJS - 高阶组件
- ReactJS - 与其他库集成
- ReactJS - 性能优化
- ReactJS - Profiler API
- ReactJS - Portals
- ReactJS - 无 ES6 ECMAScript 的 React
- ReactJS - 无 JSX 的 React
- ReactJS - 调和
- ReactJS - Refs 和 DOM
- ReactJS - Render Props
- ReactJS - 静态类型检查
- ReactJS - Strict Mode
- ReactJS - Web Components
- 其他概念
- ReactJS - 日期选择器
- ReactJS - Helmet
- ReactJS - 内联样式
- ReactJS - PropTypes
- ReactJS - BrowserRouter
- ReactJS - DOM
- ReactJS - 走马灯
- ReactJS - 图标
- ReactJS - 表单组件
- ReactJS - 参考 API
- ReactJS 有用资源
- ReactJS - 快速指南
- ReactJS - 有用资源
- ReactJS - 讨论
ReactJS - findRenderedComponentWithType()
React.js 中有一个名为 findRenderedComponentWithType() 的函数。此函数类似于另一个名为 scryRenderedComponentsWithType() 的函数,但其工作方式不同。findRenderedComponentWithType() 背后的基本思想是在渲染树中定位并返回给定的组件。
findRenderedComponentWithType() 的目标是在渲染树(React 组件的结构)中搜索给定的组件。与其他几个函数相比,findRenderedComponentWithType() 只需要一个匹配项。如果有多个匹配项或根本没有匹配项,则会抛出异常。
语法
findRenderedComponentWithType(tree, componentClass)
参数
tree − 这是我们要搜索的 React 组件的渲染树。
componentClass − 这是我们想要的组件类型,由其类给出。
返回值
findRenderedComponentWithType() 返回渲染树中与给定类类型匹配的单个 React 组件。如果只有一个匹配项,它将返回该组件。如果没有匹配项或多个匹配项,它将抛出异常,指示预期匹配数存在问题。
示例
示例 - 计数器应用和测试
这是一个基本的计数器应用,其中我们将有一个按钮用于递增计数器。然后,我们将为此组件创建测试以测试其功能。让我们看看应用和测试的代码:
CounterApp.js
import React, { useState } from 'react'; const CounterApp = () => { const [count, setCount] = useState(0); const increment = () => { setCount(count + 1); }; return ( <div> <h1>Counter App</h1> <p>Count: {count}</p> <button onClick={increment}>Increment</button> </div> ); }; export default CounterApp;
CounterApp.test.js
import React from 'react'; import { render } from '@testing-library/react'; import { findRenderedComponentWithType } from 'react-dom/test-utils'; import CounterApp from './CounterApp'; test('finds and interacts with the "Increment" button', () => { const { container } = render(<CounterApp />); const incrementButton = findRenderedComponentWithType(container, HTMLButtonElement); // The testing logic goes here expect(incrementButton.textContent).toBe('Increment'); // Additional assertions });
输出
示例 - 电子邮件验证应用和测试
现在,我们将创建一个小型应用程序,该应用程序将验证用户的电子邮件地址,并使用 findRenderedComponentWithType() 方法创建测试代码:
FormValidationApp.js
import React, { useState } from 'react'; const FormValidationApp = () => { const [email, setEmail] = useState(''); const [validEmail, setValidEmail] = useState(false); const handleEmailChange = (e) => { const newEmail = e.target.value; setEmail(newEmail); setValidEmail(validateEmail(newEmail)); }; const validateEmail = (input) => { // Simple email validation logic return /\S+@\S+\.\S+/.test(input); }; return ( <div> <h1>Form Validation App</h1> <label>Email:</label> <input type="text" value={email} onChange={handleEmailChange} /> {validEmail ? <p>Email is valid!</p> : <p>Email is not valid.</p>} </div> ); }; export default FormValidationApp;
FormValidationApp.test.js
import React from 'react'; import { render } from '@testing-library/react'; import { findRenderedComponentWithType } from 'react-dom/test-utils'; import FormValidationApp from './FormValidationApp'; test('finds and validates the email input', () => { const { container } = render(<FormValidationApp />); const emailInput = findRenderedComponentWithType(container, HTMLInputElement); //testing logic expect(emailInput.type).toBe('text'); });
输出
示例 - 切换开关应用和测试
在这个应用中,我们将使用切换功能,其中具有开启和关闭功能,然后我们将使用 findRenderedComponentWithType() 为此功能创建测试。此应用和测试代码如下:
ToggleSwitchApp.js
import React, { useState } from 'react'; const ToggleSwitchApp = () => { const [isOn, setIsOn] = useState(false); const toggleSwitch = () => { setIsOn(!isOn); }; return ( <div> <h1>Toggle Switch App</h1> <label> <input type="checkbox" checked={isOn} onChange={toggleSwitch} /> {isOn ? 'ON' : 'OFF'} </label> </div> ); }; export default ToggleSwitchApp;
ToggleSwitchApp.test.js
import React from 'react'; import { render } from '@testing-library/react'; import { findRenderedComponentWithType } from 'react-dom/test-utils'; import ToggleSwitchApp from './ToggleSwitchApp'; test('finds and interacts with the toggle switch', () => { const { container } = render(<ToggleSwitchApp />); const toggleSwitch = findRenderedComponentWithType(container, HTMLInputElement); // testing logic expect(toggleSwitch.type).toBe('checkbox'); });
输出
总结
在本教程中,我们学习了 findRenderedComponentWithType(),这是一个 React.js 函数,有助于在渲染树中定位特定组件。我们分析了它的参数,然后利用这些知识创建了三个不同的 React.js 应用。我们不仅理解了这个概念,而且还将其付诸实践,使我们的学习更加实践化。