iwebshop 取同类商品API
//取同类商品
'getCategoryExtendList'=>array(
'query'=>array(
'name' => 'category_extend as ca',
'join' => 'left join goods as go on go.id = ca.goods_id',
'where' => ' ca.category_id = #categroy_id# and go.is_del = 0',
'order' => ' rand() desc',
'limit' => 10,
)
),