0

在此页面上:http: //build.jhousemedia3.com/pleasanton/shop/district-profile/stoneridge-shopping-center/

URL 的格式如下 http://build.jhousemedia3.com/pleasanton/[channel]/[template]/[query parameter]

我正在使用 URL 的最后一段(segment_4)运行 exp:channel:entries 查询

发生的情况是,当我从这个 URL 运行它时,我无法从除特定购物区频道之外的任何其他频道中提取数据。如果我要将最后一段更改为 /?id=28 (或类似的),我可以从多个通道中提取数据。

有任何想法吗?

基于URL拉取商圈简介的代码:

{exp:channel:entries url_title="{segment_4}" limit="1" channel="shopping_districts"}
    <h2 class="upper"><span class="greenlight">{title}</span></h2>
    {if center_website}
        <div class="greyroundbox right"><a href="{center_website}" class="external-link" target='_blank'>Visit the Website</a></div>
    {/if}
    <p>{shopping_center_description}</p>
    <div class="clear"></div>
{/exp:channel:entries}

用于提取任何业务数据的代码

{exp:channel:entries channel="businesses"}
    <li class="{switch='first|'}">
        <p>
        <a href="{path='pages/business-profile'}" class="main-title">{business_name}</a>
        <a href="{path='pages/shopping-category'}" class="green-title">{categories_shopping}</a><br />
        {if phone}
            <strong>Phone</strong>: {phone}<br />
        {/if}
        <strong>Address</strong>: {address_1}<br />
        {if address_2}
            {address_2}<br />
        {/if}
        {city}, {state}, {zip}<br />
        {if website}
            <a href="{website}" class="grey"><em>{website}</em></a>
        {/if}
        </p>
    </li>
{/exp:channel:entries}
4

1 回答 1

1

也许很明显,但是您是否在另一个循环中添加了 dynamic="no" ?

{exp:channel:entries channel="businesses" dynamic="no"}
于 2012-11-06T10:16:26.707 回答