org / alfresco / modules中的js控制器可以在Alfresco共享中扩展或覆盖吗?

时间:2014-07-09 10:51:35

标签: alfresco alfresco-share

我正在尝试在路径create-event.js中扩展webscript中的org/alfresco/module/控制器。我创建了一个函数,用于在模型对象中添加其他数据,但是我得到一个关于应该在模型对象中实例化的原始对象的错误。这使我得出结论,控制器被过度使用而不是延长。

是否可以在此路径中扩展webscripts?

代码:

var connector = remote.connect("alfresco");
var themes1url = "/event-constraints/group";
var list1 = connector.get(themes1url);

var themesList1 = eval('(' + list1.response + ')');

if (themesList1 !== null || themesList1 !== undefined)
    model.themesList1 = themesList1.constraintValues;

0 个答案:

没有答案