我正在开发一个Opencart模块,以显示type = Deal的所有产品。虽然我有3个产品需要测试,但它只显示了1个产品。这是代码。
$results = $this->model_catalog_product->getProducts();
foreach ($results as $result) {
if($result['type'] == "Deal"){
$this->data['products'][] = array(
'product_id' => $result['product_id'],
'thumb' => $image,
'name' => $result['name'],
//'company' => $result['company'],
'redurl' => $result['redurl'],
'coupon' => $result['coupon'],
);
}
}
答案 0 :(得分:0)
请转到模型部分。
模块>产品
检查函数getProducts();
使用WHERE条件修改sql查询位置。