简体   繁体   English

在按钮 onClick 上加载反应组件

[英]Load a react component on button onClick

I have the following code for a button in my ReactApp to open a new window with specific size:我的 ReactApp 中有以下代码用于打开具有特定大小的新 window 的按钮:

<button
   type="button"
   style={{ height: '20px', width: '50px' }}
   className="btn btn-primary"
   onClick={() => {
   window.open(
   "",
   "Popup",
   "width=975, height=92, top=30"
       );
     }}
 />

I want to load another component when user clicks on the button.当用户单击按钮时,我想加载另一个组件。 How can I achieve that?我怎样才能做到这一点? I have tried to load the component and then use it like the following, but didn't work:我试图加载该组件,然后像下面这样使用它,但没有奏效:

import component from "./component"

    <button
       type="button"
       style={{ height: '20px', width: '50px' }}
       className="btn btn-primary"
       onClick={() => {
       window.open(
       "{<component />}",
       "Popup",
       "width=975, height=92, top=30"
           );
         }}
     />

What would be the best way to do this?最好的方法是什么?

Here is my component:这是我的组件:

export default function component(props) {
  return (
  
    <div className="container">
      <div className="cabinet"><img src={image} />
        <div className="devices"> <img src={image2} />
       
      </div>
    </div>
  );
}

Add a state in main page and pass it to component在主页中添加一个 state 并将其传递给组件

 const [open, setOpen] = useState[false];

  const onClickHandle = () => {
    setOpen(true);
  };

  return (
    <>
      <button
        type="button"
        style={{ height: '20px', width: '50px' }}
        className="btn btn-primary"
        onClick={onClickHandle}
      />
      <component open={open} />
    </>
  );

Add a new props to control the component添加一个新的 props 来控制组件

export default function component(props) {
  const { open } = props;
  return (
    <>
      {open && (
        <div className="container">
          <div className="cabinet">
            <img src={image} />
            <div className="devices">
              {' '}
              <img src={image2} />
            </div>
          </div>
        </div>
      )}
    </>
  );
}

Using state hooks and conditional rendering, you can load a react component on a button onClick.使用 state 钩子和条件渲染,您可以在按钮 onClick 上加载反应组件。

const [visible, setVisible] = React.useState(false);

function click(e) {
  e.preventDefault();
  setVisible(true);
}

return (
  <div>
    <button onClick={(event) => {
       click(event)
    }} />
    
    {isVisible && (
      <YourComponent />
      )
    }
  </div>
)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM