A
A
Artem Vladilenko2020-11-13 20:54:46
JavaScript
Artem Vladilenko, 2020-11-13 20:54:46

How do I solve TypeError: Cannot read property 'gettingWeather' of undefined?

there are 2 components.
one)

import React from "react";
import ReactDOM from "react-dom";
import Info from "./components/info";
import Form from "./components/form";
import Weather from "./components/weather";

const API_KEY = "c4a63d329f2ce2e7f45535735ea17783"

function App() {

  const gettingWeather = async (e) => {
    e.preventDefault();
    const api_url = await
    fetch(`https://api.openweathermap.org/data/2.5/weather?q=Kiev&appid=${API_KEY}&units=metric`);
    const date = await api_url.json();
    console.log(date);
  }

  return(
    <>
      <Info />
       <Form weatherMethod={this.gettingWeather} />
      <Weather />
    </>
  )
}


ReactDOM.render(
  <App />,
  document.getElementById("root")
)


2)
import React from "react";

function Form() {
  return(
    <form onSubmit={this.props.weatherMethod}>
      <input type="text" name="city" placeholder="Город"/>
      <button>Получить погоду</button>
    </form>
  )
}

export default Form;


How can I solve this problem?
PS Please do not be smart and do not say that it is very simple or go learn again. Thanks in advance

Answer the question

In order to leave comments, you need to log in

1 answer(s)
H
hellcaster, 2020-11-13
@web_Developer_Victor

// --------------------------- ИЗ ПЕРВОГО КОМПОНЕНТА --------------------------- 
return(
    <>
      <Info />
       <Form weatherMethod={gettingWeather} />
      <Weather />
    </>
  )

// --------------------------- ИЗ ВТОРОГО КОМПОНЕНТА --------------------------- 
function Form({weatherMethod}) {
  return(
    <form onSubmit={weatherMethod}>
      <input type="text" name="city" placeholder="Город"/>
      <button>Получить погоду</button>
    </form>
  )
}

Read more about how functional components work.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question