我正在使用 React 和 graphql 获取数据,并使用 react/pdf-renderer 进行渲染。我使用 renderContent,但它给了我这个错误。我做错了什么?Uncaught TypeError: Cannot read properties of undefined (reading 'bookingConfirmationNumber')at renderContent下
2022-08-30
我有以下两个组件(父组件和子组件).├── Index.vue (Parent)└── _GetShipment.vue (Child)在Index.vue中,我尝试使用 Office.js 的 getAsync 获取电子邮件正文的内容:<script>import Shipment from './_GetShipment.vue';import { ref, defineComponent,
2022-08-29
我根据 YouTube 视频创建了一个简单的天气网络应用,并希望它每 3 秒或 30 秒自动刷新一次,但是当我尝试使用setInterval时出现了无法识别的错误:App.js:15 Uncaught TypeError: Cannot read properties of undefined (reading 'key')at search (App.js:15:1)我刚刚开始使用 react-
2022-08-27
此问题已解决。向下滚动或单击此处查看解决方案我尝试使用 React 从我的服务器提取 JSON 数据并使用两个函数渲染它。但似乎两个渲染函数无法正确读取 json 中的值。我确定我的数据服务器正常工作。错误日志:Unhandled Runtime ErrorUncaught TypeError: Cannot read properties of undefined (reading 'title
2022-08-25
尝试使用默认历史对象创建一个普通路由器,但它抛出了此错误 -Module not found: Error: Can't resolve 'history/createBrowserHistory'在 App.js 文件中 -import history from './history'const App = () => {return (<div className="ui container"
2022-08-24
因此,在我的代码中,setData 似乎工作正常,并将获取的数据提供给我的状态。但是它在第一次渲染时不起作用。但如果我在代码中更改某些内容,网站将再次渲染,国家名称将按照我想要的方式显示在屏幕上。但此错误不断弹出:未捕获的类型错误:无法读取未定义的属性(读取“common”)import React, { useState, useEffect } from 'react';import { us
2022-08-21
我有一个数组对象const admins= [{id: 1,name: 'Admin 1',},{id: 2,name: 'Admin 2',},{id: 3,name: 'Admin 3',}]和另一个数组对象const members= [{id: 1,name: 'Name 1',addedByAdminId: 1},{id: 2,name: 'Name 2',addedByAdminId:
2022-08-18
嗨,我有一段代码需要根据 ID 隐藏和显示 div。这行得通,但问题是我需要能够隐藏页面上具有相同 ID 的其他 DIVS。我知道 ID 应该是唯一的,但是当我尝试使用 querySelectorAll 时,我的控制台显示未捕获 TypeError:无法设置未定义的属性(设置“display”)“未捕获 TypeError:无法读取未定义的属性(读取“className”)我也很难只显示第一个选项
2022-08-18
ERROR Error: Uncaught (in promise): TypeError: Cannot read properties of undefined (reading 'appendChild')TypeError: Cannot read properties of undefined (reading 'appendChild')at StackController.trans
2022-08-17
将对象推送到数据中的问题数组内,它会出现此错误Uncaught TypeError:data.sections 不可迭代在 handleClick (SecondStep.tsx:14:1)export default function CreateStepper() {const [data, setData] = useState({name: "",desc: "",sections: []
2022-08-17
我是 React 中的天气应用项目新手。在这种情况下,我使用的是 OpenWeatherAPI。我的问题是,当我尝试使用 forEach 时,它会出现如下所示的错误。ApiCall.jsx:15 Uncaught TypeError: Cannot read properties of undefined (reading 'forEach')这是我的 Header 组件:import ApiCa
2022-08-15
当我单击购买按钮时,我试图将选定的文本更改为 popup.html 和 popup.js 中 id 为“ext”的 p 元素,但似乎未定义。这是我的 manifest.json{"name": "hoko's ext","description": "my ext","version": "1.0","manifest_version": 3,"action": {"default_popup":
2022-08-13
当我尝试通过 Elementor 中的“HTML 编辑”元素将脚本添加到 Elementor 时,或者在编辑 HTML 时在 Elementor 的任何字段中,addEventListener 在管理员之外不起作用。因此,如果您以管理员身份加载已编辑的页面,它会起作用,如果您以访客身份加入,则会发送错误:“未捕获 TypeError:无法读取未定义的属性(读取‘addEventListener’)
2022-08-13
我尝试了互联网上可用的所有解决方案,但还是无法解决这些错误。请帮助我。遇到类似以下错误:警告:列表中的每个子项都应具有唯一的“key”属性。检查Home的渲染方法。有关更多信息,请参阅https://reactjs.org/link/warning-keys。在 tr在 Home (http://localhost:3000/static/js/bundle.js:679:75)在 Routes
2022-08-12
const letsMatch = (string, char) => {const newRegex = new RegExp(char, "gi");let result = string.match(newRegex);const findNegIndex = result.indexOf(char);if (findNegIndex === null) {return result = 0
2022-08-10