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.
我为 Liferay 开发了一个非常简单的 portlet,其中包含一个用于向外部 Web 服务提交几个参数的表单。我的问题是,当我按下提交时,我被重定向到该 Web 服务的 URL。
有没有办法抑制重定向并在我发出调用的同一个 portlet 中显示 web 服务响应?
非常感谢您的反馈,非常感谢。
您必须使用 javascript (AJAX) 将数据发送到 web 服务并直接获取响应而不重定向用户。然后使用您从 javascript 收到的数据,您可以在页面上显示它们。
您可以使用Jquery和函数ajax()来做到这一点。
希望,我帮助了你:)