Sling Dynamic Include 不适用于多个组件
Sling Dynamic Include Not Working for Multiple components
我正在配置 SDI OSGi 配置,参考 - https://experienceleague.adobe.com/docs/experience-manager-learn/foundation/development/set-up-sling-dynamic-include.html?lang=en
我面临的问题是:
如果我在配置中设置了 Only 1 resource type 属性 -
include-filter.config.resource-types="[my-app/components/content/highly-dynamic]" - 它有效。
但是如果我在配置中设置了不止一种资源类型属性 -
include-filter.config.resource-types="[my-app/components/content/highly-dynamic, my-app/components/content/highly-dynamic2,my-app/components/content/highly-dynamic3]" - SDI 仅适用于第一个条目(my-app/components/content/highly-dynamic) 而不是其他人。
所以如果我颠倒顺序,
include-filter.config.resource-types="[my-app/components/content/highly-dynamic3, my-app/components/content/highly-dynamic2,my-app/components/content/highly-dynamic]" - SDI 仍然仅适用于第一个条目(my-app/components/content/highly-dynamic3) 而不是其他人。
您的问题听起来与影响当前版本 3.2.0 的 https://issues.apache.org/jira/browse/SLING-10289 有关。
我正在配置 SDI OSGi 配置,参考 - https://experienceleague.adobe.com/docs/experience-manager-learn/foundation/development/set-up-sling-dynamic-include.html?lang=en
我面临的问题是:
如果我在配置中设置了 Only 1 resource type 属性 -
include-filter.config.resource-types="[my-app/components/content/highly-dynamic]" - 它有效。
但是如果我在配置中设置了不止一种资源类型属性 -
include-filter.config.resource-types="[my-app/components/content/highly-dynamic, my-app/components/content/highly-dynamic2,my-app/components/content/highly-dynamic3]" - SDI 仅适用于第一个条目(my-app/components/content/highly-dynamic) 而不是其他人。
所以如果我颠倒顺序,
include-filter.config.resource-types="[my-app/components/content/highly-dynamic3, my-app/components/content/highly-dynamic2,my-app/components/content/highly-dynamic]" - SDI 仍然仅适用于第一个条目(my-app/components/content/highly-dynamic3) 而不是其他人。
您的问题听起来与影响当前版本 3.2.0 的 https://issues.apache.org/jira/browse/SLING-10289 有关。