在prestashop

时间:2015-09-01 16:01:22

标签: prestashop

当我点击Call my webservice按钮时,它的id =" click-me-web-service"然后ajax请求发送并调用我的文件hit-web-service.php,但我发现这个阶段的错误帮助我解决它。我的方法是否正确调用php文件?



jQuery(document).ready(function() {

    jQuery("#click-me-web-service").click(function() {

        jQuery.ajax({
          type: "POST",
          url: "{$base_dir}modules/wrd_web_service/hit-web-service.php",
          data: { first_name: "Joh", last_name: "Sin", username: "johsin", email: "john12@gmail.com" },
          success: function() {
          
            console.log("Success.");
          
          }

        });

    })

});




1 个答案:

答案 0 :(得分:1)

在smarty模板中使用js代码时请小心。 tpl中的使用大括号{}可能会发生冲突,当你想要js中的真正大括号时{@ 1}}

请修改您的代码,如下所示

{literal}