2

我想例如/content/branc/region/microsite_name/en/mypage/jcr:content/par/mycomponent在 jQuery 中获取路径。

我可以使用 Granite.author.page 获取页面路径。

获取页面路径的代码:

(function ($, $document, author) {
    "use strict";   
$(document).on("dialog-ready", function() {
    var path = author.page`enter code here`.path; //This works
    var component = author.component.path; //This is not working
    console.log("component path " +component);
   });
})($, $(document), Granite.author);

请建议如何在 jquery 中获取组件路径。

4

2 回答 2

1

资源类型在Granite.author.DialogFrame.currentDialog.editable.type. 类型字段中的路径不是绝对的,并且缺少“/apps 或 /libs”部分。如果您对绝对路径感兴趣,请尝试Granite.author.DialogFrame.currentDialog.editable.config.dialog

于 2019-03-09T18:05:59.557 回答
0

正如@sharath-madappa 指出的那样,resourceType可以从Granite.author.DialogFrame.currentDialog.editable.type.

如果您想要调用对话框的组件的确切路径,您可以使用Granite.author.DialogFrame.currentDialog.editable.path.

有关它的更多文档:https ://helpx.adobe.com/experience-manager/6-3/sites/developing/using/reference-materials/jsdoc/ui-touch/editor-core/Granite.author.DialogFrame.html

于 2019-05-28T15:10:17.137 回答