开发者问题收集
我试图将我的 API 从包含数组更改为包含对象。我尝试映射我的对象,以便可以在引导卡上使用它。它显示错误 Uncaught TypeError:无法读取未定义的属性(读取“map”)。我该如何修复它?此外,console.log 显示 0 个数组,而它应该是 1这是我的对象示例:{"count": 1,"next": null,"previous": null,"results": [{"id":
有人能帮我吗,我收到此错误“App.js:69 Uncaught TypeError:无法读取未定义的属性(读取'setState')at onInputChange(App.js:69:1)”代码片段
我正在开发一个 React 应用,但我遇到了这个错误——“未捕获的类型错误:无法读取未定义的属性(读取‘长度’)”。如何修复这个问题?我的代码是:import React from "react";import { Grid, CircularProgress } from "@material-ui/core";import Post from "./Post/Post";import useS
const rndInt = Math.floor(Math.random() * 50);const arr = [];const input = document.getElementById('answer').value;function displaySeq() {var i = 0;while (arr.length < 21) {arr[i] = {sequence: [],answ
我需要将此信息用于我的购买完成页面,但我收到此错误:未捕获 TypeError:无法读取未定义的属性(读取“0”)我的代码是:import { getFirestore } from "../firebase/firebase";import { useParams } from "react-router-dom";function ConfirmacionCompraPage() {const
我有这个异步函数,它从 API 中获取数据,但是当我使用数据时,它会在电影数组中出现未定义的类型错误。但是,我使用“&&”来告诉它,如果它为空,则不要执行该块,但它仍然给出错误。我也用三元运算符完成了这件事,但仍然一样。这是使用效果钩子从 API 中获取数据const [movies, setMovies] = useState([])useEffect(() => {async function
我有 6 个div,其id为wrapperX(X为数字 1 到 6)当我想使用for循环更改其背景颜色时日志中显示错误,内容为Uncaught TypeError: Cannot read property 'style' of null当我不使用模板文字时,它可以工作,但我必须逐个编写代码// show errorfor (let i = 0; i < 6; i++) {let eleSelec
我尝试使用 useEffect 从 json 服务器获取一些数据,但出现以下错误:Uncaught TypeError:无法读取未定义的属性(读取“questionText”)。在使用 json 服务器复制数据库之前,我能够显示数据。如能得到任何帮助,我将不胜感激。提前致谢。import {useState, useEffect} from 'react';const QuestionSectio
我是 context API 的新手,正在尝试让我的代码工作。我收到错误:Uncaught TypeError: Object is not iterable (cannot read property Symbol(Symbol.iterator))你们当中有谁能帮我解决这个问题吗?initialUserState 记录一个如下所示的对象:{name: nanny}我的 context 文件是:
我尝试在我的cards.component.ts769516561我只想在每个项目中显示“通知”上的某些内容,但向我展示此错误609539817
我使用 Vue 3 创建了一个自定义组件库,在通过 yarn 本地安装并注册组件后,在浏览器 devtools 中使用模板中的组件时,一直出现以下错误:Uncaught TypeError: Cannot read properties of null (reading 'isCE')研究该问题后,发现 Vue 社区提出的解决方案不起作用。我在两个项目上运行的是同一个 Vue 3 版本。我按照步骤
我收到以下错误 -ProductDetail.js:13 Uncaught TypeError: 无法读取未定义的属性(读取“name”)import React from 'react';import {useParams } from 'react-router-dom';import products from '../products';const ProductDetail = () =
我试图使 div 可点击,以便将其重定向到其他文档或网站,但出现了错误。但是,它可以使用旧方法,即在元素内使用 onclick 作为属性。var examscol = document.getElementById("exam-col1");function examCol() {return window.location.assign("https://www.w3schools.com")}
我已经在我的网页中动态构建了导航栏,如下所示NavBuilder = () => {//to loop from section 1 to 4 and add sections to navigationfor (s = 0; s < sections.length; s++) {const liElem = document.createElement('li');//const divElem
如何从另一个 iframe 获取值?当我检查网站并单击此行时:<input type="hidden" name="1" value="q"›然后我在控制台中输入以下内容:document.getElementsByName("3")[0].value我可以获取值:'e'但如果我单击 iframe 外部并检查值,我会得到以下结果:VM89205:1 Uncaught TypeError: 无法读取