我正在尝试在路径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;