为什么portlet是renderRequest.setAttributereturn最后一个变量?

Why portlet is renderRequest.setAttribute return the last variable?

我解释一下我的问题:

我正在使用 Liferay 6.1,我正在尝试了解文档和媒体控制面板的功能。

我的第一个问题,如何将ddm-date类型设置为空?

我的主要问题:

我显示了可选日期,但它覆盖了所有创建日期。在显示中我只得到可选日期和最后一个。我解释说,当我从文档和媒体控制面板添加一个带有可选日期字段的文件(例如值为“2012/08/01”)时,table 中的所有值都将替换为该值。

我使用 renderRequest.setAttribute 从 java 代码发送了我的变量 我用 JSTL - Core <fmt: formatDate value = "$ {optionalDate}" pattern = "MMM yyyy" /> 标签在我的视图中显示了它。我的 portlet 也从 MVCPortlet 扩展而来。

为什么doView是render renderRequest.setAttribute return最后一个变量?

在我的 java 代码中:

    for(DLFileEntry file : listFiles){
    try {
    Map<String, Fields> fieldsMap = file.getFieldsMap(file.getFileVersion().getFileVersionId());
         if(fieldsMap.values().size() <= 0)
            listContextFiles.remove(file);

    for (Fields fields : fieldsMap.values()) { 
    if(...){
      if(...){
      }
      else{ 
         if(fields.get("optionaldate") != null ) {
         DateFormat dateFormat1 = new SimpleDateFormat("yyyy/MM/dd");
         String _optionalDate = (String) fields.get("optionaldate").getValue();
         Date optionalDate = dateFormat1.parse(_optionalDate);
         file.setModifiedDate(optionalDate);
         renderRequest.setAttribute("optionalDate", optionalDate);
         System.out.println(file.getModifiedDate());
         listDate.add(dateFormat.format(file.getModifiedDate()));
         }
         else{
            renderRequest.setAttribute("optionalDate", file.getModifiedDate());                  
            if(!listDate.contains(dateFormat.format(file.getModifiedDate()))){
            listDate.add(dateFormat.format(file.getModifiedDate()));
            } 
         }
         //other conditions
     }
...

在我的 view.jsp:

<liferay-ui:search-container iteratorURL="<%=actionURL%>" delta="10"
        emptyResultsMessage="no-documents">
        <liferay-ui:search-container-results total="<%=list.size()%>"
            results="<%=ListUtil.subList(list,
                                        searchContainer.getStart(),
                                        searchContainer.getEnd())%>" />
        <liferay-ui:search-container-row modelVar="file"
            className="DLFileEntry">

            <!--other code-->

            <liferay-ui:search-container-column-text name='date'
                cssClass="txt-capitalize width-10">
                <fmt:formatDate value="${optionalDate}" pattern="MMM yyyy" />
            </liferay-ui:search-container-column-text>

            <!--other code-->

        </liferay-ui:search-container-row>

    </liferay-ui:search-container>

有没有一种干净的方法可以做到这一切?

有人可以告诉我我的代码有什么问题吗?

如果您展开所有循环,首先在 Java,然后在 JSP,您基本上是在执行这些命令(按此顺序),给定 3 个要显示的对象:

renderRequest.setAttribute("optionalDate", someDate);
renderRequest.setAttribute("optionalDate", someOtherDate);
renderRequest.setAttribute("optionalDate", yetSomeOtherDate);

接着读取JSP中的值:

renderRequest.getAttribute("optionalDate");
renderRequest.getAttribute("optionalDate");
renderRequest.getAttribute("optionalDate");

因为 setAttribute 不是 pushToQueue 并且 getAttribute 不是 nextFromQueue(打个比方),你只会得到 yetSomeOtherDate 的所有迭代你的 JSP 循环,很自然。

您可以

  • 计算您的 JSP、
  • 中的值
  • 根据当前对象存储一个为您计算的对象,
  • 使用对象的 ID 作为其键的一部分来存储属性,例如"optionalDate-" + file.getId() 而不仅仅是通用的 "optionalDate"。然后在 JSP 中使用相同的键结构来读取正确的值。 (恕我直言,这很不优雅,但对于您的用例来说可能很实用)