douke8473 2015-07-23 08:22
浏览 54
已采纳

JQuery ajax永远不会成功。 这是什么错误?

I'm trying to make an ajax to a php-server that use Wordpress. I'm using the rewrite rule to redirect the ajax calls:

function Ajax_roules_setup(){
        add_rewrite_rule(
            'ajax/([^/]*)',
            'index.php?action=$matches[1]',
            'top'
        );
}

add_action('init','Ajax_roules_setup');

And this is working fine (if i go to localhost/wordpress/ajax/myrequest i get the page with the request).

Now I have this php code that manage the ajax request:

<?php

/* 
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

function load_template_part($template_name, $part_name=null) {
    ob_start();
    get_template_part($template_name, $part_name);
    $var = ob_get_contents();
    ob_end_clean();
    return $var;
}

$reply = null;
switch ($wp->query_vars['action']){
    case 'get-more-posts':
        $html_for_ajax = sprintf('%s',  load_template_part("content","fourFrom"));
        $reply = 
            array(
                'status' => 'success',
                'last'   => ''.$all_post_loaded,
                'html'   => $html_for_ajax ,
            );
        break;
}

print_r(json_encode($reply));
?>

As said befor it works!! An this is the js code (use jQuery) :

var calls = 1;
jQuery(document).ready(
        function () {
            jQuery("#forntPage-getMore").click(
                    function () {
                        if (calls >= 0) {
                            jQuery.ajax({
                                // definisco il tipo della chiamata
                                type: "POST",
                                // specifico la URL della risorsa da contattare
                                url: "http://localhost/wordpress/ajax/get-more-posts",
                                // passo dei dati alla risorsa remota
                                data: "ajax_get_more=" + calls,
                                // definisco il formato della risposta
                                dataType: "json",
                                // imposto un'azione per il caso di successo
                                succes: function (result) {
                                    //var reply = jQuery.parseJSON(result);
                                    if (reply.last) {
                                        calls = -1;
                                        jQuery("#forntPage-getMore").remove;
                                    } else {
                                        calls++;
                                    }
                                    jQuery("#frontpage-post-grid").append(reply.html);
                                }, error: function (xhr, status, error) {
                                    var err = eval("(" + xhr.responseText + ")");
                                    alert(err.Message);
                                }
                            });
                        }
                    }
            );
        }
);

So for what i have understand this should work, but all the calls that are made end with error 404 not found! Can be a problem of Permalink, or is something else?

  • 写回答

1条回答 默认 最新

  • doutuoji8418 2015-07-23 08:24
    关注

    It is success not succes

    try :-

    success: function (result) {
                                        //var reply = jQuery.parseJSON(result);
                                        if (reply.last) {
                                            calls = -1;
                                            jQuery("#forntPage-getMore").remove;
                                        } else {
                                            calls++;
                                        }
                                        jQuery("#frontpage-post-grid").append(reply.html);
                                    }, error: function (xhr, status, error) {
                                        var err = eval("(" + xhr.responseText + ")");
                                        alert(err.Message);
                                    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 关于#opencv#的问题:使用大疆无人机拍摄水稻田间图像,拼接成tif图片,用什么方法可以识别并框选出水稻作物行
  • ¥15 Python卡尔曼滤波融合
  • ¥20 iOS绕地区网络检测
  • ¥15 python验证码滑块图像识别
  • ¥15 根据背景及设计要求撰写设计报告
  • ¥20 能提供一下思路或者代码吗
  • ¥15 用twincat控制!
  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1