我想创建一个包含产品总数的递归菜单,但是我现在卡住了,因为我已经渲染了Topmenu但是我无法找到另一种方法来实现它。
我不想使用很多MySQL查询,因为它可能会使我的网站变得非常慢。
我正在使用的代码:
require 'db.php';
$result = mysql_query("SELECT COUNT(c.category_id) AS count, c. category_id, c.parent_id, cd.name, p.product_id FROM category c
LEFT JOIN category_description AS cd ON (cd.category_id=c.category_id)
LEFT JOIN product_to_category AS ptc ON (ptc.category_id=c.category_id)
LEFT JOIN product AS P ON (p.product_id=ptc.product_id)
GROUP BY c.category_id
ORDER BY c.parent_id,cd.name") or die (mysql_error());
$menuData = array( 'items' => array(), 'parents' => array() );
while ($menuItem = mysql_fetch_assoc($result)) {
$menuData['items'][$menuItem['category_id']] = $menuItem;
$menuData['parents'][$menuItem['parent_id']][] = $menuItem['category_id'];
}
function buildMenu($parentId, $menuData) {
$html = '';
if (isset($menuData['parents'][$parentId]))
{
$html = '<ul>';
foreach ($menuData['parents'][$parentId] as $itemId) {
$iCount = ($menuData['items'][$itemId]['product_id'] != NULL) ? $menuData['items'][$itemId]['count'] : '0';
$html .= '<li>' . $menuData['items'][$itemId]['name'] . ' (' . $iCount . ') ';
$html .= buildMenu($itemId, $menuData);
$html .= '</li>';
}
$html .= '</ul>';
}
return $html;
}
echo buildMenu(0, $menuData);
预期产出:
Dell (1)
--Computer(1)
---DataCable(1)
----Extra Sub (0)
当前输出:
Dell (0)
--Computer(0)
---DataCable(1)
----Extra Sub (0)
答案 0 :(得分:0)
我认为您的查询返回错误的结果。使用
print '<pre>';print_r($menuData);print '</pre>';
在调用buildMenu()函数之前,查看查询是否返回正确的数据。
答案 1 :(得分:0)
我认为这会让你更接近正确的方向:
foreach ($menuData['parents'][$parentId] as $itemId) {
$menu = buildMenu($itemId, $menuData);
$item = $menuData['items'][$itemId];
$iCount = ($item['product_id'] != NULL) ? $item['count'] : '0';
$menuData['items'][$parentId]['count'] += $iCount;
$html .= '<li>' . $item['name'] . ' (' . $iCount . ') ';
$html .= $menu
$html .= '</li>';
}
通过重新排序然后将当前项目的计数添加到父项目的计数,您可以确保在输出iCount时,它还将包括所有孩子的计数。
我还为$menuData['items'][$itemId]
使用了一个临时变量。因为你只在那个$ menuData上进行三次数组查找,所以它可能效率不高,但它更容易阅读。