gpt4 book ai didi

javascript - React 调用另一个组件

转载 作者:太空宇宙 更新时间:2023-11-04 16:19:11 26 4
gpt4 key购买 nike

我正在使用 Grommet,并尝试获取 Layer (几乎是一个模态)在按下按钮时工作。我知道我的 onClick 有效,因为我尝试了一个简单的 console.log 并且它有效。如果我使用 ReactDOM 并渲染它,MyModal 也能够显示。我认为我的问题与我如何调用或返回它有关?我希望在单击按钮时显示模式。

MyModal.js

import React, { Component } from 'react';
import Layer from 'grommet/components/Layer';
import Header from 'grommet/components/Header';
import Heading from 'grommet/components/Heading';
import Section from 'grommet/components/Section';
import Paragraph from 'grommet/components/Paragraph';

export default class MyModal extends Component {
render () {
return (
<Layer closer={true} align="top">
<Header>
<Heading tag="h2">
Title
</Heading>
</Header>
<Section>
<Paragraph>
This is a simple dialog.
</Paragraph>
</Section>
</Layer>
);
}
};

Main.js

import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import App from 'grommet/components/App';
import Button from 'grommet/components/Button';
import MyModal from './components/MyModal';

export default class Main extends Component {
getComponent(event) {
return <MyModal/>;
}
render () {
return (
<App centered={false}>
<Button onClick={this.getComponent.bind(this)} label="Action" />
</App>
);
}
};

最佳答案

问题:
您正在尝试将模态呈现为内嵌 onClick处理程序。

建议的解决方案:

  • 在状态中设置一个值以在显示模式时进行处理

  • 设置onClick切换此值

  • 使用此状态调用 render 中的另一个方法来有条件地渲染 Modal

您的代码可以修改为:

export default class Main extends Component {
constructor(props) {
super(props);
this.state = {
showModal: false // set a value in state to store whether or
// not to show the Modal
};

// I've just put these binding in the constructor
// so as not to clock up the render method and they only
// get called once during the lifetime of the component
this.handleClick = this.handleClick.bind(this);
}
handleClick(event) { // switch the value of the showModal state
this.setState({
showModal: !this.state.showModal
});
}
getComponent() {
if (this.state.showModal) { // show the modal if state showModal is true
return <MyModal/>;
} else {
return null;
}
}
render() {
return (
<App centered={false}>
<Button onClick={this.handleClick} label="Action"/><br/> <b>{this.getComponent}</b> // call the method to render the modal here.
</App>
);
}
};
/

关于javascript - React 调用另一个组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40813279/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com