后台设置了品类券,前端会员中心,点击“立即使用”,进入到商品列表,只显示一部分产品,其他很多产品不显示;
通过代码调试发现前端参数为:title=品类券测试&coupon_category_id=1,5,7,2;
后端:StoreProductController.php,lst 函数接收代码:
$where = $request->getMore([ [['sid', 'd'], 0], [['cid', 'd'], 0], ['keyword', '', '', 'store_name'], ['priceOrder', ''], ['salesOrder', ''], [['news', 'd'], 0, '', 'is_new'], [['type', 'd'], 0], ['ids', ''], [['selectId', 'd'], 0], [['productId', 'd'], 0], [['coupon_category_id', 'd'], 0],]);输出$where 为如下值:
Array
(
[sid] => 0
[cid] => 0
[store_name] =>
[priceOrder] =>
[salesOrder] =>
[is_new] => 0
[type] => 0
[ids] =>
[selectId] => 0
[productId] => 0
[coupon_category_id] => 1
)
请问这种是什么问题呢?

