我不确定为什么我的代码在单击提交按钮时没有拾取我的选择并将其附加到我的数组中。我收到以下错误...“modals.js:103 Uncaught TypeError:无法在 submit_button.onclick 处读取 null 属性(读取“length”)”我的代码在选择时将“按钮焦点”添加到 className。我想获取这些选择并将其附加到我的数组中。出于某种原因,它没有检测到任何带有“
2022-06-13
我不知道为什么会出现此错误,我相信逻辑没有问题。matchData[0] 包含此信息:{ players: ["Disguised Lizard", "DrSpiteful"],winner: "DrSpiteful",scoreDifference: 1}以下是包含 Match(props) 信息的逻辑:import React from 'react';import Match from
2022-06-11
在 *ngIf 条件下使用 @viewchid 时获取未定义的 nativeElement错误未捕获(在承诺中):TypeError:无法读取未定义的属性(读取“nativeElement”)
2022-06-09
大家好。我试图在用户单击产品按钮后将对象存储到钩子数组中。但是,我一直收到:对象不可迭代错误。主要部分:let shoppingArray = [];const shopping = (item) => {shoppingArray.push(item);console.log(shoppingArray);setShoppingBag(...shoppingBag, shoppingArray)
2022-06-09
在完成firebase hosting后没有任何错误,我进入网站发现这个错误,但我不知道解决办法这是错误Uncaught TypeError: Cannot read properties of null (reading 'gCr')at main.dart.js:43863:27at ara.a (main.dart.js:5471:62)at ara.$2 (main.dart.js:359
2022-06-06
我有 2 个数组 -collections和settings。在collections数组中,我需要删除空数组,但需要从数组设置中删除相同的索引,因此我写道:$.each(collections, function(index, collection) {if (collection.length == 0) {collections.splice(index, 1);settings.splic
2022-06-06
我正在尝试更改 JavaScript 中元素的可见性。我尝试使用控制台窗口运行openloginHud();,它响应未定义我也尝试使用控制台,它告诉我错误是Uncaught TypeError: Cannot read properties of null (reading 'style')at openloginHud (index.js:20:40)at HTMLInputElement.on
2022-06-04
stopPropagation()在我的代码中不起作用。问题是什么?当您点击按钮时,下拉菜单将切换,我想在用户点击页面上的任意位置时隐藏此切换。var iconListBoxBody;function btnCrypto(e) {e.stopPropagation();iconListBoxBody = document.getElementById("iconListBoxBody");icon
2022-06-02
ref:https://github.com/JuniorChang/SojuSushi/blob/main/frontend/src/screens/ProductScreen.js在我的代码行 155-200 中,当我第一次进入该页面时,页面不会显示任何内容。但是,如果我注释掉这些行,页面的其余部分就会出现,我继续取消注释这些行,现在它就可以正确显示了。同样,如果我刷新页面,它又会变成空白。控
2022-06-02
因此,在我的 React 代码中,我没有使用 useContext 属性。我有一个 npm 包,里面有一个编译好的 webpack 文件,里面有一个组件。当我尝试在我的 React 应用程序中使用该组件时,它会抛出错误 Uncaught TypeError: Cannot read properties of null (reading 'useContext')。组件函数在那里并输出一个 Rea
2022-05-28
我想在使用JavaScript单击“ btn”的按钮“ btn”时将文本的某个部分更改为其他颜色。,但我得到了错误“未介绍” typeerror:无法读取未定义的属性(读取“样式”)。 ,此代码似乎有效。谁能告诉我我在哪里出错?谢谢!
2022-05-27
我有一个从 webAPI 获取的父组件,它将返回一个人员数组。我还有一个子组件,它应该从父组件接收 props,其中 props 是从获取中获得的我遇到的问题是,React 似乎在获取完成之前渲染了子组件。这是我的代码:import React from "react";import { Person} from "./Components";export function Body({depar
2022-05-26
我正在使用 find 方法提取 ID(字符串),但由于 ID 不存在,因此返回了未定义值。const additionalLinePhoneNumber = products.find(product => product.name === 'segundaLinea').id;产品具有以下内容:(2) [ProductInventoryList, ProductInventoryList]0:
2022-05-26
我正在开发一个 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
2022-05-25
我收到此错误:未捕获 TypeError:无法读取未定义的属性(读取“indexOf”)仅当我重新加载页面时才会发生这种情况。第一次加载时没问题,但当我重新加载时就会发生这种情况。我尝试执行类似以下操作:favoritesItems?.map((favorite) => .... 但没有帮助,所以我认为可能是身份验证中的问题?编辑:如果我删除 const { user } = UserAuth()
2022-05-25