dongpu6141 2013-04-29 08:20
浏览 50
已采纳

AJAX脚本的文件路径(在Wordpress中)

I use this jquery-ajax script to send email:

    $.ajax({
        url: process.php,    
        type: "POST",
        data: data,        
        cache: false,
    ...

in url I call the php file that sends email, but ajax get it only if I specify the full path:

url: "http://www.domain.com/wp-content/themes/site_theme/templates/process.php",

but I have to use a syntax like this:

url: "../../templates/process.php",

or using a variable to declare in the html header/footer

Html

<script type="text/javascript">
  var urlMail = '<?php bloginfo('template_url'); ?>/templates/process.php';
</script>

Script

url: "../../templates/process.php",

but with both the above cases the browser console retrieves this error:

POST http://www.domain.com/templates/process.php 404 Not Found 1.56s

Where am I wrong?

  • 写回答

3条回答 默认 最新

  • dougang1605 2013-04-29 09:21
    关注

    That's not the way to implement ajax in wordpress. All ajax request should be made to admin-ajax.php.

    In your template file:

    <script type="text/javascript">
    var ajaxurl = '<?php echo admin_url('admin-ajax.php'); ?>';
    </script>
    

    In your js:

    $.ajax({
            url: ajaxurl,    
            type: "POST",
            cache: false,
            data: data + '&action=sendmail' //action defines which function to use in add_action
    });
    

    in your functions.php:

    function send_my_mail(){
    #do your stuff
    }
    
    add_action('wp_ajax_sendmail', 'send_my_mail');
    add_action('wp_ajax_nopriv_sendmail', 'send_my_mail');
    

    Read about Ajax in Plugins.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 LiBeAs的带隙等于0.997eV,计算阴离子的N和P
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 来真人,不要ai!matlab有关常微分方程的问题求解决,
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算