我通过Liferay表单发布密码并将其存储在名为“password”的会话中, 当我输入正确的密码时,我将其设为默认密码“1234”会话被激活 当我浏览页面时,它工作正常。
但是当我第一次发布它时,它不起作用,我需要在按钮上单击2次以便我可以看到数据或者我是否转到另一页。
这里的任何人都可以支持我。这是我的完整代码:
<%
String value = BeanParamUtil.getString(article, request, "structureId");
%>
<portlet:actionURL secure="<%= PropsValues.COMPANY_SECURITY_AUTH_REQUIRES_HTTPS || request.isSecure() %>" var="SecondloginURL">
<portlet:param name="saveLastPath" value="0" />
<portlet:param name="struts_action" value="/journal_content/view" />
</portlet:actionURL>
<c:choose>
<c:when test="<%= value.equals(\"10801\") %>">
<%
HttpSession session1 = request.getSession(false);
out.print(session1 + "<br>");
String sessionId = session1.getId();
out.print(sessionId + "<br>");
String foo = (String) session1.getAttribute("password");
out.print(foo + "<br>");
%>
<c:choose>
<c:when test="<%= !Validator.isNull(foo) %>">
<h2>this is the second password and it's working</h2>
<div class="journal-content-article"
id="article_<%= articleDisplay.getCompanyId() %>_<%= articleDisplay.getGroupId() %>_<%= articleDisplay.getArticleId() %>_<%= articleDisplay.getVersion() %>">
<%= RuntimePortletUtil.processXML(application, request, response, renderRequest, renderResponse, articleDisplay.getContent()) %>
</div>
</c:when>
<c:otherwise>
<aui:form action="<%= SecondloginURL %>" name="auth" method="POST">
<aui:input label="Second Password" type="password" name="password" />
<aui:button type="submit" value="authenticate" onClick="location.reload(true)" />
</aui:form>
<%
String pass = request.getParameter("password");
out.println(pass+" = 1234");
%>
<c:if test="<%= Validator.equals(pass, \"1234\") %>">
<%
session1.setAttribute("password","authenticated");
%>
</c:if>
</c:otherwise>
</c:choose>
</c:when>
<c:otherwise>
<div class="journal-content-article"
id="article_<%= articleDisplay.getCompanyId() %>_<%= articleDisplay.getGroupId() %>_<%= articleDisplay.getArticleId() %>_<%= articleDisplay.getVersion() %>">
<%= RuntimePortletUtil.processXML(application, request, response, renderRequest, renderResponse, articleDisplay.getContent()) %>
</div>
</c:otherwise>
</c:choose>
我在 journal_content / view
上执行挂钩答案 0 :(得分:0)
发生的事情是在第一次刷新页面之后(使用location.reload()
)会话尚未设置,直到您检查它并且它在{{1}中设置阻止条件下方。
所以当你第二次点击重新加载会话已经设置好了。即使你只是第二次刷新页面而没有点击按钮,你会发现会话已经设置。
所以我能想到的一种方法是使用<otherwise>
钩子(如果你使用struts-action
)来移动相应View-action类中Liferay 6.1
代码的设置。
否则
在检查session
字符串之前,可以尝试移动session
代码的设置。