遇到的问题
http://localhost:8088/user/current-conversation/GROUP@TGS#15S477ZGI
【GROUP@TGS#15S477ZGI】是群组会话ID,然而这个会话ID外面有#,#是url的特殊字符示意锚点,导致在详情页外面取到的会话ID没有#前面的局部
解决办法:
this.props.history.push(`/user/current-conversation/${encodeURIComponent(encodeURIComponent(conversation.conversationID))}`);
两次encodeURIComponent
在详情页外面两次decodeURIComponent