0

我有一些组件已分解为多个较小的文件。主文件使用data-sly-include属性包含它们。

我想在主文件和包含的文件中生成包含当前文件名的 HTML 注释,这样当我查看呈现的输出时,我可以很容易地分辨出哪个文件生成了输出。就像是:

... some HTML from the template or other components...
<!-- begin /path/to/main/file.html -->
<div>
    This is from the main file
    <!-- begin  /path/to/main/includes/first.html -->
    <p>This is fromt the first include</p>
    <!-- end /path/to/main/includes/first.html -->
    <!-- begin  /path/to/main/includes/second.html -->
    <p>This is fromt the second include</p>
    <!-- end /path/to/main/includes/second.html -->
    now we're back in the main file
<!-- end /path/to/main/file.html -->

我可以看到如何获取当前页面的路径,但那是包含我的组件的资源;我想要组成组件的文件的路径。有什么办法可以在 Sightly 中做到这一点?

4

1 回答 1

0

漂亮的脚本引擎将当前文件作为绑定变量与吊索,所以以下应该工作 -

sling.getScript().getScriptResource().getPath()

你必须把它放在一个 js 文件中,然后从你所有的脚本中调用它。

于 2017-08-11T15:37:20.910 回答