有没有办法在<h:commandButton>
内调用网址操作,或者<h:form>
?我正试图从我自己的网站绕过我的电子邮件登录页面,所以我使用JSF bean来保存我在<h:inputSecret>
标签中的登录信息,以便我只需点击“转到电子邮件”,因为我是登录到我自己的网站,我可以直接进入我的收件箱,无需再次登录
答案 0 :(得分: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>