我有2个不同的react应用程序在两个不同的localhost端口上运行。一个在3001上,另一个在3002上。 对于端口3001上的应用程序,我需要向端口3002上的应用程序发送一个变量“参数”,为此,我具有以下路由代码:
Please ask your
questions after the session is finished.
以上内容在Link标记中的用法如下:
<ProtectedRoute exact path="/pathName" component = {() => window.location.href=`http://localhost:3002?parameter=${store.getState().reducer.parameter} />
是否可以在两个应用之间共享“ parameter”变量?