我是Pyro和CI noob,对于任何明显的遗漏都很抱歉。
我正在为旅游公司建立一个网站。我已经设置了一个带有departure_locations的流和另一个带有旅行的流。两者都有一个名为出发地名称的指定字段。我正在尝试输出每个位置下的旅行列表,但我无法弄清楚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论坛上发布了这个。
答案 0 :(得分:0)
看起来我用这篇文章的语法想出来了: http://www.pyrocms.com/forums/posts/view_reply/16409
{{streams:tours where="`departure_location_name`='{{departure_location_name}}'"}}
答案 1 :(得分:0)
我今天堆积了这个问题,并通过以下include
和include_by
参数解决了这个问题:
{{ streams:tours include=departure_location_name include_by="departure_location_name" }}
引用