0

我是火焰兵和 CI 菜鸟,对于任何明显的遗漏,我深表歉意。

我正在为一家旅游公司建立一个网站。我已经设置了一个带有离开位置的流和另一个带有旅游的流。两者都有一个名为出发地点名称的分配字段。我正在尝试输出每个位置下的旅行列表,但我无法弄清楚 where 语句。

{{streams:departure_locations}}
  {{streams:tours where="`departure_location_name`='departure_location_name'"}}
    {{tour_name}}
  {{/streams:tours}}
{{/streams:departure_locations}}

我得到了一个没有结果,尽管肯定有条目应该适合 where 语句。谁能看到我哪里出错了?提前致谢。

我正在使用 PyroCMS v2.1.2。我也在 PyroCMS 论坛上发布了这个。

4

2 回答 2

0

看起来我用这篇文章的语法想出来了:http: //www.pyrocms.com/forums/posts/view_reply/16409

{{streams:tours where="`departure_location_name`='{{departure_location_name}}'"}}
于 2012-06-29T19:40:03.587 回答
0

我今天堆叠了这个问题,并使用如下参数解决includeinclude_by

{{ streams:tours include=departure_location_name include_by="departure_location_name" }}

PyroCMS官方文档引用

于 2014-07-31T13:56:54.330 回答