ReactJS-从另一个组件调用一个组件方法(ReactJS - Call One Component Method From Another Component)
2021-02-20 07:43
标签:第二部分 creat first tab 组成 方法 代码 done pre I have two components. I want to call a method of the first component from the second component. How can I do it? Here is my code. First Component Second Component You can do something like this Using statics 我有两个组成部分。我想从第二个组件中调用第一个组件的方法。我该怎么办? 这是我的代码。 第一个组件 第二部分 您可以执行以下操作 使用静态变量 ReactJS-从另一个组件调用一个组件方法(ReactJS - Call One Component Method From Another Component) 标签:第二部分 creat first tab 组成 方法 代码 done pre 原文地址:https://www.cnblogs.com/shaozhu520/p/12922233.htmlclass Header extends React.Component{
constructor(){
super();
}
checkClick(e, notyId){
alert(notyId);
}
}
export default Header;
class PopupOver extends React.Component{
constructor(){
super();
// here i need to call Header class function check click....
// How to call Header.checkClick() from this class
}
render(){
return (
import React from ‘react‘;
class Header extends React.Component {
constructor() {
super();
}
checkClick(e, notyId) {
alert(notyId);
}
render() {
return (
var MyComponent = React.createClass({
statics: {
customMethod: function(foo) {
return foo === ‘bar‘;
}
},
render: function() {
}
});
MyComponent.customMethod(‘bar‘); // true
类头扩展了React.Component {
Constructor(){
super() ;
}
checkClick(e,notyId){
alert(notyId);
}
}
导出默认标题; 类PopupOver扩展了React.Component {
Constructor(){
super();
//在这里,我需要调用Header类函数check click ....
//如何从此类中调用Header.checkClick()
}
render(){
return(
你好
);
}
}
导出默认值PopupOver; import从‘react‘进行反应;
类标题扩展了React.Component {
Constructor(){
super();
}
checkClick(e,notyId){
alert(notyId);
}
render(){
return(
)
}
};
类PopupOver扩展了React.Component {
构造函数(props){
super(props ;;
this.props.func(this,1234);
}
render(){
return(
你好
);
}
}
导出默认标题; var MyComponent = React.createClass({
statics:{
customMethod:function(foo){
return foo ===‘bar‘;
}
},
render:function(){
}
});
MyComponent.customMethod(’bar’); // true
文章标题:ReactJS-从另一个组件调用一个组件方法(ReactJS - Call One Component Method From Another Component)
文章链接:http://soscw.com/index.php/essay/57882.html