working with Query String in GWT

前端 未结 4 796
闹比i
闹比i 2021-01-13 06:23

I have to created a dynamic URLcontaining the user id and email parameters, which will direct to sign up form in my GWT application. I want to set and get the parameters in

4条回答
  •  别那么骄傲
    2021-01-13 06:44

    There is in-built support for getting all of the parameters.

    Simply call:

         Map> parameterMap = Window.Location.getParameterMap();
    

提交回复
热议问题