我在react中有两个独立的组件,我想在第一个组件中调用一个方法,该方法将Some值返回给另一个组件。
import React from 'react';
export default class A extend React{
constructor(props){
super(props);
}
getName = () =>{
var name = "MyName";
return name;
}
render(){
//Some code to render
}
}
现在在组件B中要调用方法getName(),以便它返回要在组件B中使用的名称。
import React from 'react';
export default class B extends React{
constructor(props){
super(props);
}
getName = () =>{
//Want to call the getName method of component A here
}
render(){
//Some code to render
}
}