有没有办法在 a 中调用 URL 操作<h:commandButton>
,或者就此而言 a <h:form>
?我试图从我自己的网站绕过我的电子邮件登录页面,所以我使用 JSF bean 将我的登录信息保存在<h:inputSecret>
标签中,这样我就可以简单地单击“转到电子邮件”,因为我已经登录到我自己的网站,我可以直接进入我的收件箱而无需再次登录
问问题
6065 次
1 回答
2
只需使用纯 HTML<form>
而不是 JSF <h:form>
。
<form action="http://example.com/mail" method="post">
<input type="text" name="username" value="#{bean.username}" />
<input type="password" name="password" value="#{bean.password}" />
<input type="submit" value="Go to Email" />
</form>
于 2012-08-13T22:41:27.783 回答