1、获取路径
Window.Location.getHost();//localhost:8080
Window.Location.getHostName();//localhost
Window.Location.getHref();//http://localhost:8080/A/a.html
2、获取路径上的参数
Map<String, List<String>> maps = Window.Location.getParameterMap();
3、页面之间的跳转
a、gwt可以通过window.open(url,name,features)实现不同页面之间的跳转,这样浏览器会打开一个新的页面;
b、gwt还可以通过先将页面内容清空,然后重新加载新的内容实现在一个页面中显示不同内容。
Window.Location.getHost();//localhost:8080
Window.Location.getHostName();//localhost
Window.Location.getHref();//http://localhost:8080/A/a.html
2、获取路径上的参数
Map<String, List<String>> maps = Window.Location.getParameterMap();
3、页面之间的跳转
a、gwt可以通过window.open(url,name,features)实现不同页面之间的跳转,这样浏览器会打开一个新的页面;
b、gwt还可以通过先将页面内容清空,然后重新加载新的内容实现在一个页面中显示不同内容。