zoukankan      html  css  js  c++  java
  • ecshop_添加最新评论

    第一步:

    在includes/lib_goods.php里面构建自定义函数

    代码如下:

    /**
     * 获取最近评论
     *
     * @return array
     */
    function get_latest_comment($limit_num)
    {
        $sql = "SELECT c.content,c.add_time,g.goods_id,g.goods_name FROM ".$GLOBALS['ecs']->table('comment')." AS c
                LEFT JOIN ".$GLOBALS['ecs']->table('goods')." AS g on c.id_value=g.goods_id
                WHERE c.status=1
                LIMIT ".$limit_num;   
          $res = $GLOBALS['db']->getAll($sql);
        return $res;
    }

     第二步:

    在根目录的goods.php的$smarty->assign('goods_rank',          get_goods_rank($goods_id));                       // 商品的销售排名

    下面添加以下代码

    代码如下:

    $smarty->assign('comments_latest',     get_latest_comment(10));                 //获取最新品论

     第三步:

    在library目录下创建comments_latest.lbi文件

    第四步:

    在模板文件goods.dwt中使用以下代码即可在商品详情页面中调用“最新评论”

    代码如下:

    < !-- #BeginLibraryItem "/library/comments_latest.lbi" --><!-- #EndLibraryItem -->
     
     
     
     
     
     
  • 相关阅读:
    Go视频教程
    Mysql常用
    同步Redux
    React跨组件通讯
    React组件通讯
    React
    git生成公钥和私钥
    常用经典算法---希尔排序
    string和c_str()使用时的坑
    腾讯云python网站开发环境搭建
  • 原文地址:https://www.cnblogs.com/vip-deng-vip/p/7476293.html
Copyright © 2011-2022 走看看