使用网址参数的正确方法是什么?
我的网址是:http://localhost:8080/#pg5?testing=abc
在我的代码中,我试图使用这行代码获得测试的价值:
String value = com.google.gwt.user.client.Window.Location.getParameter("testing");
不幸的是,所有这一切都将我的字符串设置为“undefined”。
我想也许没有得到正确的网址,但这段代码会返回正确的网址:
String value = com.google.gwt.user.client.Window.Location.getHref();
我知道我可以解析url以获取我的参数,但我认为这就是getParamerter()的用途。
答案 0 :(得分:12)