**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
如何在同一背景中为不同组件添加背景我想显示上一个组件以显示背景我尝试了〈组件1/〉#在此组件中我添加了导航按钮〈组件2〉我想将此组件显示为弹出模型
1条答案
按热度按时间2g32fytz1#
由于你没有发布任何代码,只是解释你尝试了什么,我不会发布任何代码,只是告诉你应该朝什么方向发展。首先是
I want to show the previous component to show the background I tried
。如果你想让Parent组件显示子组件正在做什么。然后你需要在父组件中保存一些state
,并从子组件中保存一些update state
。查看props
。第二个I want to show this component as popUp modal
。为此,您需要一个ModalComponent
,renders
关闭state
上的boolean
值。通过打开和关闭功能(如button
)切换。