我需要帮助填充Alfresco Share中的下拉列表。我创建了一个WebScript API,用于读取存储库中文件夹的内容。作为Alfresco(存储库)中的一项服务,它是有效的。然而,我需要那个DropDown in Share。
以下是我在Alfresco所做的:
var folder = roothome.childByNamePath(url.extension);
if (folder == undefined || !folder.isContainer)
{
status.code = 404;
status.message = "Folder " + url.extension + " not found.";
status.redirect = true;
}
model.folder = folder;
<webscript>
<shortname>Folder Listing Sample</shortname>
<description>Sample demonstrating the listing of folder contents</description>
<url>/folder/{path}</url>
<format default="html">argument</format>
<authentication>user</authentication>
<transaction>required</transaction>
</webscript>
<html>
<head>
<title>${folder.displayPath}/${folder.name}</title>
</head>
<body>
Folder: ${folder.displayPath}/${folder.name}
<br>
<select id='selectItems' name='selectItems' onchange='dropdown2()'>
<#list folder.children as child>
<option value='${child.nodeRef}'>${child.properties.name}</option>
</#list>
</select>
</body>
</html>
<#macro encodepath node><#if node.parent?exists><@encodepath node=node.parent/>/${node.name?url}</#if></#macro>
我需要共享中的下拉列表。由于像userhome、companyhome这样的变量无法从Share WebScripts访问,我不知道如何从Alfresco获取信息并在Share中显示。如有任何帮助,我们将不胜感激。
从alfresco共享的javascript控制器,您可以调用alfreco的webscript,并以json格式从alfreco webscript中检索详细信息。下面是一个从共享javascript控制器调用露天webscript的例子。
try
{
var url = "/slingshot/webscript/from/alfresco/url";
logger.log("url: " + url);
// Request the current user's preferences
var result = remote.call(url);
if (result.status == 200 && result != "{}")
{
logger.log(result);
var nodeInfo = eval('(' + result + ')');
nodeRef = nodeInfo.parent.nodeRef;
}
}
catch (e)
{ }
在上面的url中,是一个露天的webscript url,它将以json格式返回数据。根据您的要求,您也可以以其他形式返回数据。