请求转发使用forwardAction,请求参数会带过去,不要在请求中带参数,比如:
forwardAction("/api/test/toPage?openId=1");
正确的写法是:
forwardAction("/api/test/toPage");
请求转发使用forwardAction,请求参数会带过去,不要在请求中带参数,比如:
forwardAction("/api/test/toPage?openId=1");
正确的写法是:
forwardAction("/api/test/toPage");