0

如何从 url 分配和获取参数 像这样

simple.com?userId=123456

我已经尝试Window.Location.replace(url)分配参数

那么我可以用什么来获取 userId

4

1 回答 1

1

你有没有尝试过 ??

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

于 2013-03-14T10:42:04.793 回答