在我的Vaadin 7应用程序中,我有以下网页的后续页面:
http://example.com?wizzard#!products/68691/gps-tracker
如何从Vaadin 7应用程序代码中获取此页面参数(在本例中为wizzard
)?
答案 0 :(得分:1)
String value = VaadinService.getCurrent().getCurrentRequest().getParameter("wizzard");
// wizzard present if value is not null