有没有办法获取 IBM Websphere Commerce Foundation 框架 (WCF) 排序数据?
例如,来自 Websphere Commerce JSP 文件的这个片段:
<wcf:getData type="com.ibm.commerce.store.facade.datatypes.GeoNodeType[]"
var="geoNodes" varException="geoNodeException" expressionBuilder="findChildGeoNodesByGeoNodeUniqueID">
<wcf:param name="accessProfile" value="IBM_Store_All" />
<wcf:param name="parentUniqueId" value="${provinceId}" />
</wcf:getData>
如何通过 GeoNodeType 中的给定数据字段对数据进行排序?我可以添加类似的东西<wcf:param name="sortBy" value="Description" />
吗?