为什么Wordpress ajax无法在移动浏览器中运行?

时间:2017-04-27 14:10:31

标签: php jquery ajax wordpress

当我只是通过计算机打开链接时,当你每天点击时它工作正常,但同样的事情在移动浏览器中不起作用。

function total_lunch_scripts(){
    wp_enqueue_script('script-name', plugin_dir_url(__FILE__) . '/js/example.js', array('jquery'), '1.0.0', true);
    wp_localize_script('script-name', 'MyAjax', array(
        'ajaxurl' => admin_url('admin-ajax.php'),
        'security' => wp_create_nonce('my-special-string')
    ));
}

add_action('wp_enqueue_scripts', 'total_lunch_scripts');

function lunch_action_callback(){
    check_ajax_referer('my-special-string', 'security');
    $date = $_POST['today_date'];
    lunch_front_today($date);
}

add_action('wp_ajax_lunch_action', 'lunch_action_callback');

https://dev.totalmedia.nu/total_lunch/total-lunch/

0 个答案:

没有答案