|
前段时间用织梦开发商城时用到loop和sql标循环出产品列表页内容,因为产品详情内容需要跨越多个表获取信息,所以对dede织梦的loop和sql标签进行研究,发现两个标签都能够进行多表查询,以下是例子:
- {dede:loop table='dede_category_brand b,dede_goods g,dede_category_series s' row='8' if='b.cat_id=g.cat_brand_id and g.cat_series_id=s.series_name and g.cat_id=72'}
- [field:cat_name/]
- [field:series_name/]
- [field:goods_model/]
- [field:shop_price/]
- {/dede:loop}
复制代码
- {dede:sql sql='select * from dede_category_brand b,dede_goods g,dede_category_series s where b.cat_id=g.cat_brand_id and g.cat_series_id=s.series_name and g.cat_id=71 limit 0,8'}
- [field:cat_name/]
- [field:series_name/]
- [field:goods_model/]
- [field:shop_price/]
- {/dede:sql}
复制代码
|
|