ECSHOP如何在首页调用商品属性到首页?

在index.php中加入:$properties=get_goods_properties($goods_id);//获得商品的规格和属性$smarty->ass... 在 index.php中加入: $properties = get_goods_properties($goods_id); // 获得商品的规格和属性 $smarty->assign('properties', $properties['pro']); // 商品属性首页没办法调用商品属性,后来发现问题出在 $goods_id 上,$goods_id没办法获取到商品的ID号...有什么好的办法在首页获取商品的ID?有没有其他办法在首页的商品列表中(热门\最新\精品)调用商品属性?知道的和小弟说下,感激....解决后追加N分(所有分数都给你啦) 展开
 我来答
北漂燕郊杨哥
2011-07-26 · TA获得超过221个赞
知道小有建树答主
回答量:414
采纳率:0%
帮助的人:530万
展开全部
这个其实不用这么复杂,直接用我的方法,可以在任何页面调用ecshop的属性,更多关于ecshop的技术qq讨论群5292623,方法是:
第一步:你可以在includes\lib_insert.php的最后面加上:
function insert_attr($arr)
{
static $static_res = NULL;
$aid= isset($arr['id'])?$arr['id']:0;
$gid= isset($arr['gid'])?$arr['gid']:0;
if($aid==0) return '';
if ($static_res[$aid][$gid] === NULL)
{
if($gid>0)
{
$static_res[$aid][$gid] = $GLOBALS['db']->getOne('select attr_value from ' . $GLOBALS['ecs']->table('goods_attr') . " where attr_id ='$aid' and goods_id='$gid' ");
}
else
{
$static_res[$aid][$gid] = $GLOBALS['db']->getOne('select attr_name from ' . $GLOBALS['ecs']->table('attribute') . " where attr_id ='$aid' ");
}
}

return $static_res[$aid][$gid];
}

注意加在?>前面
第二步,就直接在模板中,无论是dwt还是lib中调用,调用方法:
{insert name='member_attr' aid=属性id gi=商品编号} 调用商品的属性值
{insert name='member_attr' aid=属性id} 调用商品的属性名

参考资料: 顶亿ecshop开发网http://ecshop.topit.cn/ecshop-tutorial/ecshop_get_goods_attr_in_any_place-131.html

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式