为什么portlet是renderRequest.setAttributereturn最后一个变量?
Why portlet is renderRequest.setAttribute return the last variable?
我解释一下我的问题:
我正在使用 Liferay 6.1,我正在尝试了解文档和媒体控制面板的功能。
在我的 portlet 视图中,我有一个显示文档列表的 table,其中一个字段是修改日期。默认情况下,此日期是文件修改日期。
在java代码中我需要检查这个日期字段(可选),如果它是空的我保留旧代码(显示文档的修改日期)如果它是不为空,那么我想改为显示它的值(可选日期的值)。
我创建了一个文档类型,我在文档类型中添加了一个名为 date(可选)的字段来手动添加日期。
我不明白的一件事,当尝试添加一个字段 ddm-date 类型时,日期字段应该有一个默认值,它不能为空
我错了吗?
我的第一个问题,如何将ddm-date类型设置为空?
在创建字段时,当我将 None 放入首选值时,CMS 会自动将其更改为默认值,并在表单中(添加新文件时)select 如我所见,可选日期的数据不包含空值(默认情况下它包含今天的日期)。
所以我使用文本字段作为类型。
我的主要问题:
我显示了可选日期,但它覆盖了所有创建日期。在显示中我只得到可选日期和最后一个。我解释说,当我从文档和媒体控制面板添加一个带有可选日期字段的文件(例如值为“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 中使用相同的键结构来读取正确的值。 (恕我直言,这很不优雅,但对于您的用例来说可能很实用)
我解释一下我的问题:
我正在使用 Liferay 6.1,我正在尝试了解文档和媒体控制面板的功能。
在我的 portlet 视图中,我有一个显示文档列表的 table,其中一个字段是修改日期。默认情况下,此日期是文件修改日期。
在java代码中我需要检查这个日期字段(可选),如果它是空的我保留旧代码(显示文档的修改日期)如果它是不为空,那么我想改为显示它的值(可选日期的值)。
我创建了一个文档类型,我在文档类型中添加了一个名为 date(可选)的字段来手动添加日期。
我不明白的一件事,当尝试添加一个字段 ddm-date 类型时,日期字段应该有一个默认值,它不能为空 我错了吗?
我的第一个问题,如何将ddm-date类型设置为空?
在创建字段时,当我将 None 放入首选值时,CMS 会自动将其更改为默认值,并在表单中(添加新文件时)select 如我所见,可选日期的数据不包含空值(默认情况下它包含今天的日期)。
所以我使用文本字段作为类型。
我的主要问题:
我显示了可选日期,但它覆盖了所有创建日期。在显示中我只得到可选日期和最后一个。我解释说,当我从文档和媒体控制面板添加一个带有可选日期字段的文件(例如值为“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 中使用相同的键结构来读取正确的值。 (恕我直言,这很不优雅,但对于您的用例来说可能很实用)