Modx:按电视过滤的 getResources

发布于 2024-10-15 10:30:16 字数 344 浏览 2 评论 0原文

我有一个电视“标签”,用逗号分隔......通常的东西。现在我只想显示特定电视的资源:

<ul class="resource-by-tag">
  [[!getResources? &parents=`15` &tpl=`resourceByTagRow` &includeTVs=`1` &processTVs=`1` &tvFilter=`tags==rundfunk` &tvPrefix=``]]
</ul>

您可能会猜到这不起作用……但为什么呢?无论如何,它都会显示所有资源。

提前致谢!

I have a TV "Tags", comma separated… the usual stuff. Now I want to show only resources with a specific TV:

<ul class="resource-by-tag">
  [[!getResources? &parents=`15` &tpl=`resourceByTagRow` &includeTVs=`1` &processTVs=`1` &tvFilter=`tags==rundfunk` &tvPrefix=``]]
</ul>

As you might guess this doesn't work… but why? It shows all resources no matter what.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

╰ゝ天使的微笑 2024-10-22 10:30:16

这只是一个错字:

[[!getResources? &parents=`15` &tpl=`resourceByTagRow` &includeTVs=`1` &processTVs=`1` &tvFilters=`tags==rundfunk` &tvPrefix=``]]

按预期工作。它必须是 tvFilters 而不是 tvFilter

It was just a typo:

[[!getResources? &parents=`15` &tpl=`resourceByTagRow` &includeTVs=`1` &processTVs=`1` &tvFilters=`tags==rundfunk` &tvPrefix=``]]

Works as expected. It must be tvFilters instead of tvFilter.

谈场末日恋爱 2024-10-22 10:30:16

我猜测它可能与 &tvFilter='tags==rundfunk' 有关,并且标签看起来像这样 ahfunk, beefunk, redfunk 标签会包含 redfunk 但不会 ==redfunk

你尝试过使用 where 吗?我只看到它带有 = 子句,但您可能有更多选择。

I'm guessing that it may have something to do with &tvFilter='tags==rundfunk' and tags looking something like this ahfunk, beefunk, redfunk the tag would include redfunk but would not ==redfunk

have you tried using where? I only see it with the = clause, but you might have more choice there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文