h:CommandLink 可以 POST 到外部 URL 吗?

发布于 2024-10-31 05:47:23 字数 117 浏览 1 评论 0原文

我正在开发一个 Seam 应用程序,需要将一些表单数据提交到外部 URL,只是我对如何处理它有点困惑。

h:CommandLink 是理想的工具,只是它似乎无法 POST 到外部 URL。有什么想法吗?

I'm working on a Seam application and need to submit some form data to an external URL only I'm a bit stumped as to how I should approach it.

h:CommandLink is the ideal tool only it doesn't seem to be able to POST to an external URL. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

盗梦空间 2024-11-07 05:47:23

使用普通的 HTML 表单。由于没有任何内容可以绑定到您的业务/模型层,因此您根本不需要 JSF 组件。

<form action="http://example.com" method="post">
    <input type="text" name="foo" />
    <input type="submit" />
</form>

Use a normal HTML form. Since there's nothing to bind to your business/model layer, you don't need JSF components at all.

<form action="http://example.com" method="post">
    <input type="text" name="foo" />
    <input type="submit" />
</form>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文