dpwtr666638 2016-11-02 04:34
浏览 140
已采纳

使用Prestashop模块将Javascript代码添加到特定页面

I'm developing a custom Prestashop Module. The requirement is simple: Add a predefined block of javascript code to specific sections of the shopping process. Those are:

  • Home page
  • Product page
  • Product added to cart
  • Purchase completed

The code will be specific to each page.

I already read the basics of module development, but I can't find documentation for this specific functionality.

I already have a working module that is installable and configurable from the back office admin. I'm assuming I need to extend the footer and check the page currently being served, but I have no idea how to do this.

  • 写回答

3条回答 默认 最新

  • duanluan3651 2016-11-02 09:23
    关注

    It's more simple than it appears :), you have to check in which page you are, in your hookDisplayHeader method add some if:

    public function hookDisplayHeader($params){
        /* some code */
    
        // check if we are in homepage
        if($this->context->controller->php_self == 'index'){
            $this->context->controller->addJS('path-to-index-js');
        }
    
        // check if we are in product page
        if($this->context->controller->php_self == 'product'){
            $this->context->controller->addJS('path-to-product-js');
        }
    
        // and so on for all other pages
        /* ... */
    
        /* some code */
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 求TYPCE母转母转接头24PIN线路板图
  • ¥100 国外网络搭建,有偿交流
  • ¥15 高价求中通快递查询接口
  • ¥15 解决一个加好友限制问题 或者有好的方案
  • ¥15 急matlab编程仿真二阶震荡系统
  • ¥20 TEC-9的数据通路实验
  • ¥15 ue5 .3之前好好的现在只要是激活关卡就会崩溃
  • ¥50 MATLAB实现圆柱体容器内球形颗粒堆积
  • ¥15 python如何将动态的多个子列表,拼接后进行集合的交集
  • ¥20 vitis-ai量化基于pytorch框架下的yolov5模型