我根据 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 开发天气应用程序。这是学习项目。我遇到了错误。我使用了 3 个组件。App.js:<WeatherApiAddressProvider><WeatherCity /></WeatherApiAddressProvider>WeatherApiAddressProvider(Context API):const setApiAddress = (city) => {const
2021-08-29
这是我第一次来这里。我刚刚开始学习 React,在创建天气应用时遇到了一点问题。当我尝试调用 temp 值时,我收到消息:无法读取未定义的属性“temp”。如果有人发现错误,我将非常感激您的提示。我附上了代码import React, { useState } from "react";import axios from "axios";export default function Weathe
2021-06-20