doubo4824 2016-12-28 10:27
浏览 32
已采纳

Ajax返回错误的结果

I have two arrays. 1 is empty and other have 5 items. I want to count them and display it.

i send ajax request like this :

function countTrash()
    {
        $.ajax({
               type: "GET",
               url: "count_trash_delete.php",
               data: "action=1",
               success: function(response){
                          $("#badge3").html(response);
                        }
       });
    }




function countRemove()
    {
        $.ajax({
               type: "GET",
               url: "count_trash_delete.php",
               data: "action=2",
               success: function(response){
                          $("#badge2").html(response);
                        }
       });
    }

My count_trash_delete.php looks like this

if(isset($_GET['action'])) {
    $action = 1;
}else{
    $action = 2;
}

if($action === 1){

    $trash_arr = file_get_contents('trash_bots.json');
    $trash_arr = json_decode($trash_arr);
    $number_of_trashed = count($trash_arr);

    echo $number_of_trashed;

}elseif($action === 2){

    $remove_arr = file_get_contents('remove_bots.json');
    $remove_arr = json_decode($remove_arr);

    if(!empty($remove_arr)){        
    $number_of_removed = count($remove_arr);    
        echo $number_of_removed;        
    }else{
        echo 'Empty';
    }   
}

When i get response both are 5. Which i cant understand.

  • 写回答

1条回答 默认 最新

  • doukengzi3517 2016-12-28 10:30
    关注

    You're asking the page to do the same thing, so it does the same thing. This is the problem code:

    if(isset($_GET['action'])) {
        $action = 1;
    }else{
        $action = 2;
    }
    

    It doesn't matter what the value of $_GET['action'] is in that code, if it's there at all you'll set $action to 1 and if it isn't there you'll set $action to 2. Since you're always passing action, the page always does the same thing.

    You probably want to set $action to the value of $_GET['action']:

    if(isset($_GET['action'])) {
        $action = (int)$_GET['action'];
    }else{
        $action = /*...some appropriate default number...*/;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 winform的chart曲线生成时有凸起
  • ¥15 msix packaging tool打包问题
  • ¥15 finalshell节点的搭建代码和那个端口代码教程
  • ¥15 用hfss做微带贴片阵列天线的时候分析设置有问题
  • ¥15 Centos / PETSc / PETGEM
  • ¥15 centos7.9 IPv6端口telnet和端口监控问题
  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作
  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 海浪数据 南海地区海况数据,波浪数据
  • ¥20 软件测试决策法疑问求解答