Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 GWT 中开发一个登录表单,其中需要将身份验证参数传递给 jsp 页面。我可以使用导航到 jsp 页面
Window.Location.assign(url);
在war目录中使用我的jsp页面,但它不会执行身份验证逻辑,因为它无法识别参数。我是否缺少任何导入声明?请帮我
鉴于您要用于导航到 url 的方法,我会将参数附加为 URL 的一部分( www.host.com/login.jsp?param=1
但是,如果您传入用户 ID 和密码,我会使用不同的方法。至少将它们放在 http 请求的正文中(如 POST)并使用 https。