gpt4 book ai didi

javascript - Laravel 实现动态侧边栏过滤器

转载 作者:行者123 更新时间:2023-11-29 17:49:41 25 4
gpt4 key购买 nike

我正在尝试构建一个广告网站,并坚持在侧边栏导航上实现根据所选类别显示的侧边过滤器。

1:https://www.pigiame.co.ke/cars

2:https://www.pigiame.co.ke/mobile-phones

请注意根据主菜单上选择的类别,侧边栏上显示的不同过滤器。需要帮助来显示不同的过滤器。

最佳答案

最简单的形式如下所示

假设您有一个product_features 表,您的查询应如下所示:

SELECT DISTINCT(`feature`) `feature_name` FROM `product_features` `pf`
INNER JOIN `products` `p` ON `p`.`id` = `pf`.`product_id`
WHERE `p`.`category_id` = ?

这应该为您提供类别的所有功能,然后您可以根据传递给菜单的category_id 制作菜单

关于javascript - Laravel 实现动态侧边栏过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49494685/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com