我想知道是否有一种方法可以创建嵌套字典结构,让键以某种方式命名空间?(无需创建数百个字典)
我努力了:
{
"jcr:createdBy": "admin",
"sling:basename": "en-content",
"jcr:mixinTypes": ["mix:language"],
"jcr:created": "Mon Mar 25 2013 07:00:18 GMT-0400",
"jcr:language": "en",
"jcr:primaryType": "sling:Folder",
"test": {
"jcr:createdBy": "admin",
"jcr:created": "Mon Mar 25 2013 13:26:52 GMT-0400",
"jcr:primaryType": "nt:folder",
"item": {
"jcr:createdBy": "admin",
"jcr:mixinTypes": ["sling:Message"],
"jcr:created": "Mon Mar 25 2013 07:00:18 GMT-0400",
"sling:message": "Value",
"jcr:primaryType": "nt:folder"
}
}
}
但http://localhost:4503/libs/cq/i18n/translator.html
只显示test
条目。
我直接从我的 JavaScript 应用程序中获取 CQ 的字典,因此嵌套的 JSON 格式对开发人员和内容创建者很有用。
根据http://sling.apache.org/site/internationalization-support-i18n.html
mix:language 节点的(直接)子节点必须包含两个命名键字符串和消息的特殊属性:
有没有其他方法可以从非直接孩子那里得到它,或者以某种方式解决它?