prestashop 1.4.1 ajax调用

时间:2013-03-06 15:57:58

标签: php jquery prestashop

我正试图在ajax中调用我的新模块的功能,但我不能。我收到“500内部服务器错误”,但我的网址很好。

我的php文件(module.php)

class test extends Module{

    function ajax_test(){
        #do some stuff
    }
}

我的ajax请求

$.ajax({
      type: "GET",
      contentType: "application/json; charset=utf-8",
      url: "module.php",
      dataType: "json",
      data : {},
      success: 
         function(data){

         }
});

有什么想法吗?

0 个答案:

没有答案