File path for AJAX script (in Wordpress)

馋奶兔 提交于 2019-11-30 08:17:39

问题


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?


回答1:


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:


I would be recommended to you use system like Registry for save all "global" values in a one place.

Registry design pattern

There is my small jQuery plugin if this is may be interesting to you. GitHub rep

<script type="text/javascript">
    $.Registry.set('urlMail', '<?php get_bloginfo('template_url'); ?>/templates/process.php';
</script>

And to get value from the Registry you must use $.Registry.get('urlMail');




回答3:


I've solved using the code provided by RRikesh but replacing

data: data 

with

data: data + '&action=sendmail'


来源:https://stackoverflow.com/questions/16274093/file-path-for-ajax-script-in-wordpress

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!