How to get data from function component?

Morton

I have a function component (A) import another function component (B).

B has a onChange value, I want to get the onChange value all the time when I import B in A.

I have no idea how to get it.

Here is the code like this:

A:

import B from './B';

const A = () => {
  // I want to get B's onChange value over here
  return (
    <B />
  );
}

B:

import React, { useState } from 'react';

const B = () => {
  const [value, setValue] = useState('');

  return (
    <SomePicker value={value} onChange={(value) => setValue(value)}
  );
} 
Maheshvirus

You can refer below solution.

import B from './B';

const A = () => {
 const getOnChangeValueFromB = (data) => {
   console.log(data)// you will get onChange value here
  };   
  // I want to get B's onChange value over here
  return (
    <B callBack={getOnChangeValueFromB}/>
  );
}

import React, { useState } from 'react';

const B = (props) => {
  const [value, setValue] = useState('');
const returnValueToA = (value) => {
    setValue(value)
    props.callBack(value);

  }
  return (
    <SomePicker value={value} onChange={(value) => returnValueToA(value)}
  );
} 

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get data from Ajax POST in my django views function?

From Dev

Function to get information from data

From Dev

How to get value from a react function within a react component

From Dev

in a react component, how to get `this` in static function?

From Dev

How to get component from component name in codenameone?

From Dev

How to get the actual data from the function hist

From Dev

EmberJS: How to call a component function from a controller and calculate the component data

From Dev

How to get data from SQL in laravel using whereIn and take function?

From Dev

How to get data from the redux store and use it in component in React Native

From Dev

VueJS - How to update component data from a function inside a method?

From Dev

how to get data value from html in javascript function?

From Dev

OpenCV: How to get data in main() from MouseCallback function?

From Dev

Titanium: How do I get the data from this function?

From Dev

How to call php function to get updated data from MYSQL with jQuery

From Dev

EmberJS: How to call a component function from a controller and calculate the component data

From Dev

Get data from a template back into the component

From Dev

how to get data from each li using jquery each function?

From Dev

Computed function from Vue component Data

From Dev

Get data from lines() function

From Dev

how to pass data from one function to another in component.ts , angular2

From Dev

How to send data from component to component?

From Dev

How to address the data of a component from within that component?

From Dev

how to call a function from another component in react

From Dev

How to get data from Form from child component and pass it back to Parent Componet?

From Dev

How get data from loop in sql function

From Dev

get data from Rails into react component

From Dev

How get data from JFrame Component Java?

From Dev

How to call a function from a component in another component?

From Dev

ReactJS) how to get data with XMLHttpRequest from PHP and render that data inside sibling component

Related Related

  1. 1

    How to get data from Ajax POST in my django views function?

  2. 2

    Function to get information from data

  3. 3

    How to get value from a react function within a react component

  4. 4

    in a react component, how to get `this` in static function?

  5. 5

    How to get component from component name in codenameone?

  6. 6

    How to get the actual data from the function hist

  7. 7

    EmberJS: How to call a component function from a controller and calculate the component data

  8. 8

    How to get data from SQL in laravel using whereIn and take function?

  9. 9

    How to get data from the redux store and use it in component in React Native

  10. 10

    VueJS - How to update component data from a function inside a method?

  11. 11

    how to get data value from html in javascript function?

  12. 12

    OpenCV: How to get data in main() from MouseCallback function?

  13. 13

    Titanium: How do I get the data from this function?

  14. 14

    How to call php function to get updated data from MYSQL with jQuery

  15. 15

    EmberJS: How to call a component function from a controller and calculate the component data

  16. 16

    Get data from a template back into the component

  17. 17

    how to get data from each li using jquery each function?

  18. 18

    Computed function from Vue component Data

  19. 19

    Get data from lines() function

  20. 20

    how to pass data from one function to another in component.ts , angular2

  21. 21

    How to send data from component to component?

  22. 22

    How to address the data of a component from within that component?

  23. 23

    how to call a function from another component in react

  24. 24

    How to get data from Form from child component and pass it back to Parent Componet?

  25. 25

    How get data from loop in sql function

  26. 26

    get data from Rails into react component

  27. 27

    How get data from JFrame Component Java?

  28. 28

    How to call a function from a component in another component?

  29. 29

    ReactJS) how to get data with XMLHttpRequest from PHP and render that data inside sibling component

HotTag

Archive