我希望传递一个网址:
localhost:9090/admin/GroupInfo.action?message=redirect.jsp?sop=here&something=other
我希望收到“redirect.jsp?sop=here&something=other
”作为参数“message
”的值,但我只在服务器上获得“redirect.jsp?sop=here
”。它可能将sop视为父URL的另一个参数。如何避免?
我尝试使用'&'
替换它来逃避第二个&
,但它无法正常工作
答案 0 :(得分:2)
encodeURIComponent("redirect.jsp?sop=here&something=other");