我有以下标记,其中显示了类别和子类别列表:
<table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr class="dataTableHeadingRow">
<td class="dataTableHeadingContent"><?php echo TABLE_HEADING_PRODUCTS; ?></td>
<td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_TOTAL_WEIGHT; ?> </td>
</tr>
<?php
function category_list( $category_parent_id = 0 )
{
$sql = 'select cd.categories_name,c.categories_id, c.parent_id, c.sort_order from ' . TABLE_CATEGORIES . ' c, ' . TABLE_CATEGORIES_DESCRIPTION . ' cd where c.categories_id = cd.categories_id AND c.parent_id='.$category_parent_id;
$res = tep_db_query( $sql );
$cats = array();
while ( $cat = tep_db_fetch_array( $res ) )
{
$cats[] = $cat;
}
if (count($cats) == 0)
{
return '';
}
$list_items = array();
foreach ( $cats as $cat )
{
$list_items[] = '<tr class="dataTableRow"><td class="dataTableContent">';
if($category_parent_id != 0) $list_items[] = ' ';
if($category_parent_id == 0 )$list_items[] = '<b>';
$list_items[] = $cat['categories_name'];
if($category_parent_id == 0) $list_items[] = '</b>';
$list_items[] = '</td><td class="dataTableContent">';
$list_items[] = category_list( $cat['categories_id'] );
$list_items[] = '</td></tr>';
}
$list_items[] = '';
return implode( '', $list_items );
}
echo category_list();
?>
</table>
每个类别以粗体显示,子类别在右侧略微缩进。我需要在每个子类别中显示可用的产品。我尝试将所需的产品字段添加到sql查询中,但它没有响应。我需要添加以搜索产品的字段为:products_id, products_name
,这些字段来自表TABLE_PRODUCTS_DESCRIPTION
,为了对其类别进行排序,还有另一个名为TABLE_PRODUCTS_TO_CATEGORIES
的表,其中包含字段products_id and categories_id
。
我将如何做到这一点?
答案 0 :(得分:0)
看起来您正在使用osCommerce或其中一个分叉,并且您希望显示每个类别的产品数量。
如果您只有两个级别的类别可以做,如果您的类别树更深入,请注意这是一个真正的性能杀手,因为在osCommerce中构建类别树已经完成,比方说,不是真正的性能优化,特别是复杂的树木结构。
直接的方法是,计算列TABLE_PRODUCTS_TO_CATEGORIES
保存当前类别ID的categories_id
表的条目:
$query = 'SELECT COUNT(*) FROM `'.TABLE_PRODUCTS_TO_CATEGORIES.'` WHERE `categories_id` = "'.$cat['categories_id'].'"';
获取结果并获得计数。
通过这种方法,您只能直接在tnis类别中获得产品数量,而不是包含在儿童类别中的产品数量。
您可能还要查看includes/boxes/categories.php
,因为这已经在osC中内置了 - 方法tep_show_category()
和此处称为tep_count_products_in_category()
可能可用于您的目的,因此无需自己写。
答案 1 :(得分:0)
我真的不喜欢查询中加入2个表的from
内容。我以我喜欢的方式更改了查询。如果您愿意,可以将其更改为from
方式。
$sql = 'select cd.categories_name,c.categories_id, c.parent_id, c.sort_order, pd.products_id, pd.products_name
from ' . TABLE_CATEGORIES . ' c
inner join ' . TABLE_CATEGORIES_DESCRIPTION . ' cd on c.categories_id = cd.categories_id
inner join '. TABLE_PRODUCTS_TO_CATEGORIES .' pc on pc.categories_id=c.categories_id
inner join ' . TABLE_PRODUCTS_DESCRIPTION . ' pd on pd.products_id=pc.products_id
where c.parent_id='.$category_parent_id;