Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 url 分配和获取参数 像这样
simple.com?userId=123456
我已经尝试Window.Location.replace(url)分配参数
Window.Location.replace(url)
那么我可以用什么来获取 userId
你有没有尝试过 ??
com.google.gwt.user.client.Window.Location.getParameter("userId");//fetch parameter com.google.gwt.user.client.Window.Location.assign(newURL); //assign new url
在将 URL 分配给位置之前,使用query parameters
query parameters