我将数组“默认值”传递到面板组件中,然后尝试将状态钩子“选定选项”设置为等于该值。由于某种原因,钩子反而设置了一个空数组。组件:const Panel = ({ title, inputs, datepicker, identifiers, apiBase, isins, defaults = [], notes = "" }) => {const [expand, setExpand] = us
2020-02-17
我正在制作待办事项清单。我希望在勾选复选框时,列表项会变成划线。因此,我尝试创建一个名为 markComplete 的 const。我通过将我的道具从组件“TodoItem”发送到“Todos”再发送到“App”来利用组件钻取。问题:在 markComplete 中,我尝试访问this,因为我想更改我选中的列表项的状态。但是因为我在这个项目中使用了 Hooks + 我是新手,所以我很难找到解决错误
2020-04-30
在 React 中尝试将两个数组加在一起时,我遇到了一些奇怪的行为。每个数组块的长度为 50 个项目。我的列表从未超过 50 个。我尝试过使用扩展运算符和 concat 方法,有和没有包装函数。什么都没用setWordList(wordList => wordList.concat(msg))setWordList(wordList => [...wordList, msg])setWordLis
2020-07-13
我正在制作一个评论组件,其中我从本地存储的 json 文件中获取数据。我将数据导入变量data中,并将其相应字段设置为我的状态值。但是当我通过上下文传递数据时,它说数据未定义。data.json{"currentUser": {"image": {"png": "./images/avatars/image-juliusomo.png","webp": "./images/avatars/imag
2022-01-30
我得到了“TypeError:无法读取未定义的属性(读取‘map’)”,即使 useState() 是用数组初始化的。该错误只发生在一个组件中。我认为其他组件也以相同的方式使用 useState 和 useEffect,因此不会出现此错误。import { useState, useEffect } from "react/cjs/react.development";import * as co
2022-03-04
我正在实现分页,其中我有一个 useState 变量,我会随着页码的变化而更改该变量,下面是我使用两个 useEffects 来调用 pagenumber 和 pagenumber+1 的数据来检查它是否抛出 404 的代码,这样我就知道什么时候停止显示下一个按钮。useEffect(() => {async function fetchData() {try {const baseUrl = '
2022-03-28
我正在使用 React Hooks 和地理位置获取经度和纬度,以便从 OpenWeatherMap 获取天气数据,现在我可以呈现 weatherData.name 属性,但weatherData.weather[0].main给出:TypeError of undefined.React 代码import React, { useState, useEffect } from 'react';co
2020-08-27
我正在使用 ReactJS 制作一个天气应用,对于天气,我使用的是 OpenWeatherMap API。我已经提取了一个数组和一个对象,因为它们是我感兴趣的。数组包含天气类型,例如下雨或晴朗,对象包含温度。我已经能够从数组中提取天气并将其显示在屏幕上,但我无法从对象中提取温度。控制台从未给出任何错误。这是代码:import React, {useState,useEffect} from 're
2021-09-13
我正在使用 React hooks、codesandbox.io 和 OpenWeatherAPI 构建一个非常基本的天气应用程序。它在const temp = Forecast.main.temp;处中断并返回“TypeError:无法读取未定义的属性(读取‘temp’)”当我最初编写它时它确实可以运行,但如果我添加另一个变量或必须以任何方式编辑 temp 变量,它就会中断。import Rea
2022-02-11
我正在开发 freeCodeCamp 鼓机应用程序。在我的应用程序中,使用函数箭头组件,我使用父组件中的 useState 钩子设置display的状态,并将其作为 prop 传递给子组件。在父组件中,我尝试在 div 中呈现display状态。但是,当触发该方法时(单击“鼓垫”div),应用程序崩溃。在控制台中,我收到一条错误消息,提示“未捕获的不变违规:对象作为 React 子项无效(找到:带
2019-09-24
我尝试从 API 访问一些数据,但当我这样做时,我得到了“无法读取 null 的属性‘5’”import React from "react";function Card(props) {console.log(props.data[5].mission_name); //why is it that this doesn't work in my machine?console.log(prop
2020-01-28
我自己学react和js,请解释一下为什么会出现这种情况。PS:抱歉文字比较多,我尽量把问题解释清楚了,谢谢。问题本质:通过hook设置初始状态: const [pokemon, setPokemon] = useState({img: "",name: "",types: [],abilities: [],moveList: [],weight: "",height: "",descripti
2020-04-01
我对 React 还很陌生,并收到以下错误:react-dom.development.js:14906 Uncaught Error: Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following
2021-04-29
const getToken = (userId, token) => {22 | getmeToken(userId, token).then((info) => {23 | console.log("INFO COMING", info);> 24 | if (info.error) {25 | setInfo({ ...info, error: info.err
2021-09-29
我正尝试使用来自 API 的数据填充表格。已更新*************import React, { useMemo, useState, useCallback, useEffect } from "react";import {AppLayout,Button,Box,Form,SpaceBetween,Grid,} from "@affn/awsui-components-react/p
2022-05-23