我需要打开一个外部链接,并通过 post 方法发送一些参数。我读过我可以使用redirect()通过get方法打开一个链接,如下代码:
def get = {
redirect(url: "http://localhost:8080/test/public/cadastro/dataConfirm.html?" + "username=" + "test")
}
显然,重定向仅适用于 get。是否有任何命令可以通过 post 方法执行此操作?谢谢。
我需要打开一个外部链接,并通过 post 方法发送一些参数。我读过我可以使用redirect()通过get方法打开一个链接,如下代码:
def get = {
redirect(url: "http://localhost:8080/test/public/cadastro/dataConfirm.html?" + "username=" + "test")
}
显然,重定向仅适用于 get。是否有任何命令可以通过 post 方法执行此操作?谢谢。
通过 grails 中的 post 进行服务器到服务器通信可以使用以下 java 代码来实现 。我对其进行了测试,并且在 grails 中运行良好。正如@Kelly 回答我的那样,替代方案是插件和 Apache Http Components 。