从 Prestashop 模块发出 ajax 请求

Posted

技术标签:

【中文标题】从 Prestashop 模块发出 ajax 请求【英文标题】:Make an ajax request from a Prestashop module 【发布时间】:2017-09-27 12:51:20 【问题描述】:

我正在制作一个模块,我需要发出一个 ajax 请求,如果可能的话,使用 JSON 响应,我该怎么做? 我不太了解 Prestashop 1.7 的结构。

谢谢!

【问题讨论】:

【参考方案1】:

这很简单,您只需按照 Prestashop 的标准制作控制器,然后将其链接到您的前端 javascript

像这样命名一个 php 文件:./modules/modulename/controllers/front/ajax.php

然后放进去:

<?php

// Edit name and class according to your files, keep camelcase for class name.
require_once _PS_MODULE_DIR_.'modulename/modulename.php';

class ModuleNameAjaxModuleFrontController extends ModuleFrontController

    public function initContent()
    

        $module = new ModuleName;

        // You may should do some security work here, like checking an hash from your module
        if (Tools::isSubmit('action')) 

            // Usefull vars derivated from getContext
            $context = Context::getContext();
            $cart = $context->cart;
            $cookie = $context->cookie;
            $customer = $context->customer;
            $id_lang = $cookie->id_lang;

            // Default response with translation from the module
            $response = array('status' => false, "message" => $module->l('Nothing here.'));

            switch (Tools::getValue('action')) 

                case 'action_name':

                    // Edit default response and do some work here
                    $response = array('status' => true, "message" => $module->l('It works !'));
                    
                    break;

                default:
                    break;

            
        

        // Classic json response
        $json = Tools::jsonEncode($response);
        echo $json;
        die;

        // For displaying like any other use this method to assign and display your template placed in modules/modulename/views/template/front/...
        // Just put some vars in your template
        // $this->context->smarty->assign(array('var1'=>'value1'));
        // $this->setTemplate('template.tpl');

        // For sending a template in ajax use this method
        // $this->context->smarty->fetch('template.tpl');

    


?>

在你的Module Hooks中,你需要在JS中引入对路由的访问,所以我们基本上做一个变量:

// In your module PHP
public function hookFooter($params)

    
    // Create a link with the good path
    $link = new Link;
    $parameters = array("action" => "action_name");
    $ajax_link = $link->getModuleLink('modulename','controller', $parameters);

    Media::addJsDef(array(
        "ajax_link" => $ajax_link
    ));


在前端,您只需在 JS 文件中这样调用它(这里使用 jQuery):

// ajax_link has been set in hookfooter, this is the best way to do it
$(document).ready(function()

    $.getJSON(ajax_link, parameter1 : "value", function(data) 

        if(typeof data.status !== "undefined") 

            // Use your new datas here
            console.log(data);

        

    );

);

瞧,你的 ajax 已经准备好使用控制器了

【讨论】:

死了吗?真的像吗?使用 Symfony\Component\HttpFoundation\JsonResponse; 这是前段时间,使用原生解决方案会更好,但这会拒绝相同的答案。使用基础 Symfony 不是强制性的,因此不向后兼容...... 是的,在那之后我在谷歌上搜索了一下,旧的 PS 真的没有任何“最佳实践”解决方案......死真的很乱......

以上是关于从 Prestashop 模块发出 ajax 请求的主要内容,如果未能解决你的问题,请参考以下文章

第七篇:Ajax功能模块

从 CouchDB Show Function 发出 AJAX 请求

发出一个简单的 Ajax 请求

net::ERR_INSECURE_RESPONSE 从 node-webkit 发出 ajax 请求

Django通过ajax获取请求发出两个请求

如何使用 Ajax 发出跨域请求?