我正在使用 alfresco 5.0.d 版本,需要在 YUI 数据表中填充自定义模型属性,作为响应,我得到如下 JSON。
{
"agency" : [
{
"agencyname": "1212",
"agencycode": "1212",
"createDate": "23/03/2016"
}]
}
custom-users-min.js 文件:生成请求并填充结果列表。
config : {
responseType : YAHOO.util.DataSource.TYPE_JSON,
responseSchema : {
resultList:"agency"
}
}
}
customgency.get.json.ftl 文件:
<#import "customagency.lib.ftl" as customagencyLib/>
<@customagencyLib.agencyJSON agency=agency/>
我收到消息为在露天 YUI 数据表中加载项目时出错。请帮我解决这个问题。