You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
By clicking “Sign up for GitHub”, you agree to our
terms of service
and
privacy statement
. We’ll occasionally send you account related emails.
Already on GitHub?
Sign in
to your account
Steps to reproduce
后端程序返回的链接里面带有如下的query
userId=UImUwZXM4RE/JI4Vh++NQL4fr5xZA=,会被vue-router编码成userId=UImUwZXM4RE%2FJI4Vh%20%20NQL4fr5xZA%3D
但是应用decodeURIComponent解码却为userId=UImUwZXM4RE/JI4Vh NQL4fr5xZA=
'+'符号被错误地编码成%20,而不是%2B。
What is Expected?
符号'+'被正确地编码为 %2B