对于接近 Alfresco 的人来说,这可能是一个问题,因为它有点具体。
我在创建网站时添加了一个自定义方面,它拥有一个日期类型的属性:
<type>d:date</type>
现在,我正在扩展site.lib.ftl文件以显示此日期:
"startdate": "<#if site.node.hasAspect("my:customAspect")>${siteNode.properties["my:customAspectDate"]?string("yyyy-MM-dd")}</#if>",
由于无法访问宏本身中的 site.node,因此我扩展了宏参数列表:
<#macro siteJSONManagers site siteNode roles>
所以我可以从site.get.json.ftl和person.sites.get.json.ftl调用它:
<@siteLib.siteJSON site=site siteNode=siteNode />
现在,对于 site.get.js,我在 javascript 中准备了 sitenode:
model.siteNode = site.node; // or the same with site.getNode;
我的日期被正确解析。但是,当从person.sites.get.json.ftl调用宏时,我无法在 javascript 控制器中准备 site.node ,所以我在 freemarker 中执行它(通过直接调用它):
<@siteLib.siteJSONManagers site=site siteNode=site.node roles=roles/>
在使用这种形式时,我得到了这个异常:
"09090011 Wrapped Exception (with status template): 09090096 Error during processing of the template 'Expected method. siteNode.properties[\"my:customAspectDate\"]?string evaluated instead to freemarker.template.SimpleScalar on line 59, column 71 in org\/alfresco\/repository\/site\/site.lib.ftl.'. Please contact your system administrator."
如果我只显示这个标量 (${siteNode.properties["my:customAspectDate"]}),我会在生成的 JSON 中得到 org.mozilla.javascript.NativeDate 作为字符串:
"startdate": "org.mozilla.javascript.NativeDate@7a6e5e2e",
我可以通过在 site.get.json.ftl 中为 siteNode 设置相同的参数来重复这一点。如果我使用 siteNode.properties["cm:created"],我什至可以重复它。
在我看来,当 javascript 控制器从节点创建模型对象时,创建的日期道具被创建为 java.util.Date 或 Freemarker 使用的任何内容,并且当 Freemarker 本身创建该属性时,它将变成 org. mozilla.javascript.NativeDate。
有人可以指出如何改进我的代码以显示日期吗?我可以使用什么来使我的调用获得相同的值?
如果有任何不同,我正在使用 SVN HEAD 的 Alfresco。