开发者问题收集
import { createSlice } from '@reduxjs/toolkit';export const userSlice = createSlice({name: 'user',initialState: {user: null,},// The `reducers` field lets us define reducers and generate associated ac
我不明白为什么会出现错误:未捕获的类型错误:无法读取未定义的属性(读取“classList”)console.log(slid[numberArray].classList)- 可以工作,但是slid[numberArray].classList.add('active') - 无法工作我知道这不是一个好的代码,但我仍在学习,我想自己制作一个滑块const slid = [...document.
我试图在我的页面上显示 Nfts,但它给出了错误,如 Uncaught TypeError:无法读取未定义的属性(读取“map”)。所以我的 nfts 变量是一个数组,但仍然无法映射。这是我的组件:import React, { useState, useEffect } from "react";import { Container, Row, Col } from 'react-bootstr
所以我对 React 还很陌生。我有一些代码,我使用 fetch 从 API(我创建的,结构化为 {'userData': {'overall': {'rank': '10', 'level': '99', 'xp': '200000000'}}})获取数据,然后将其显示在屏幕上。它工作了几个小时,现在突然之间,没有触及任何代码,它就坏了。如果我发出 API 请求然后刷新页面,它会正常显示数据。但
我使用const { id } = useParams();修复了“Uncaught TypeError: Cannot read properties of undefined (reading 'params')”之后立即出现此错误。ProductDetail.jsximport React, { Fragment, useEffect } from 'react';import Carous
我尝试使用 React 中的按钮访问水平滚动条,但结果发现它无法工作,因为无法读取.scrollLeft的空值。<><div className="containerOuterSider"><FaAngleLeft className= "FaAngleLeft" onClick={slide('left')}/><div id="container3" className="container3
我不确定为什么我的代码在单击提交按钮时没有拾取我的选择并将其附加到我的数组中。我收到以下错误...“modals.js:103 Uncaught TypeError:无法在 submit_button.onclick 处读取 null 属性(读取“length”)”我的代码在选择时将“按钮焦点”添加到 className。我想获取这些选择并将其附加到我的数组中。出于某种原因,它没有检测到任何带有“
我不知道为什么会出现此错误,我相信逻辑没有问题。matchData[0] 包含此信息:{ players: ["Disguised Lizard", "DrSpiteful"],winner: "DrSpiteful",scoreDifference: 1}以下是包含 Match(props) 信息的逻辑:import React from 'react';import Match from
在 *ngIf 条件下使用 @viewchid 时获取未定义的 nativeElement错误未捕获(在承诺中):TypeError:无法读取未定义的属性(读取“nativeElement”)
我有 2 个数组 -collections和settings。在collections数组中,我需要删除空数组,但需要从数组设置中删除相同的索引,因此我写道:$.each(collections, function(index, collection) {if (collection.length == 0) {collections.splice(index, 1);settings.splic
我正在尝试更改 JavaScript 中元素的可见性。我尝试使用控制台窗口运行openloginHud();,它响应未定义我也尝试使用控制台,它告诉我错误是Uncaught TypeError: Cannot read properties of null (reading 'style')at openloginHud (index.js:20:40)at HTMLInputElement.on
stopPropagation()在我的代码中不起作用。问题是什么?当您点击按钮时,下拉菜单将切换,我想在用户点击页面上的任意位置时隐藏此切换。var iconListBoxBody;function btnCrypto(e) {e.stopPropagation();iconListBoxBody = document.getElementById("iconListBoxBody");icon
因此,在我的 React 代码中,我没有使用 useContext 属性。我有一个 npm 包,里面有一个编译好的 webpack 文件,里面有一个组件。当我尝试在我的 React 应用程序中使用该组件时,它会抛出错误 Uncaught TypeError: Cannot read properties of null (reading 'useContext')。组件函数在那里并输出一个 Rea
我想在使用JavaScript单击“ btn”的按钮“ btn”时将文本的某个部分更改为其他颜色。,但我得到了错误“未介绍” typeerror:无法读取未定义的属性(读取“样式”)。 ,此代码似乎有效。谁能告诉我我在哪里出错?谢谢!
我正在开发一个 React 项目,一切正常。然后我开始使用react-router-dom,但路由器无法正常工作。我想转到主屏幕,但它却给出了以下错误:Invalid hook call. Hooks can only be called inside of the body of a function component.Uncaught TypeError: Cannot read prope