2.7.2 关联商品 时出错 谁能解决

2016-07-07 15:01 来源:www.chinab4c.com 作者:ecshop专家

function get_goods_list($filter)
{
$filter->keyword = json_str_iconv($filter->keyword);
$where = get_where_sql($filter); // 取得过滤条件

/* 取得数据 */
$sql = 'SELECT g.goods_id, g.goods_name, g.shop_price,c.cat_name FROM '
.$GLOBALS['ecs']->table('category').'AS cLEFT JOIN '
.$GLOBALS['ecs']->table('goods') . ' AS g ON g.cat_id = c.cat_id'. $where .
'LIMIT 50';
$row = $GLOBALS['db']->getAll($sql);

return $row;
}
关联category时 可以读到东西为什么关联goods_attr表时什么也不输出来了呢?我想吧他的属性 同时取出来
并且限制条件 我想也加上 应该如何的添加