Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一旦我在左侧快速启动中选择了一个类别,我想列出一个类别的产品。
有人知道该怎么做吗?
提前感谢:)
您可以使用以下函数获取该类别的所有产品。
$id_category = Tools::getValue('id_category'); $products = Product::getProducts(Context::getContext()->language->id, 0, 0, 'date_upd', 'ASC', $id_category, true);
$products是属于该类别的产品数组。
注意: id_category应该是产品的默认类别。