0

我正在通过 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做一个钩子

4

1 回答 1

0

发生的情况是在(使用)会话之后第一次刷新页面时,location.reload()直到您检查它并且它被设置在<otherwise>条件下方的块中。

所以当你第二次点击重新加载的时候session已经设置好了。即使您只是第二次刷新页面而没有单击按钮,您也会发现会话已设置。

所以我能想到的一种方法是使用struts-action钩子(如果你正在使用Liferay 6.1)来移动session相应 View-action 类中的代码设置。

要不然

session可以在检查foo字符串之前尝试移动代码的设置。

于 2012-09-14T09:25:35.553 回答