Reactjs如何将当前页面的道具传递到子页面

时间:2016-08-03 19:12:47

标签: javascript reactjs

这是 string windowName; IntPtr outlookHandle = (IntPtr)0; IOleWindow window = Inspector as IOleWindow; if (window != null) { window.GetWindow(out outlookHandle); List<IntPtr> subWindows = WinApiProvider.EnumChildWindows(outlookHandle); foreach (IntPtr hand in subWindows) { StringBuilder ClassName = new StringBuilder(256); int nRet = WinApiProvider.GetClassName(hand, ClassName, ClassName.Capacity); if (nRet != 0) { if (ClassName.ToString().Contains("#32770")) { windowName = WinApiProvider.GetWindowName(hand); if (windowName.Contains("Seleziona nomi")) { hBuiltInDialog = hand; break; } } } } }

在这个组件的道具中,它有几个值。

现在我想将此组件中的所有传递给Clients_info.js组件。

我知道如何将值从当前props传递给渲染函数中的子组件Modalbox。但是......从stateprops ......

我怎么能这样做?谢谢!

&#13;
&#13;
props
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

<Modalbox pets={ this.props.pets }/>

应该做的工作