将ajax数据发布到PHP并返回数据

前端之家收集整理的这篇文章主要介绍了将ajax数据发布到PHP并返回数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将一些ajax数据发布到控制器功能并将其恢复?因为我想在函数中发布一个整数,并获得另一个整数(对于发布ID的项目的总投票数),并且在成功时我希望回显该投票计数.
我不知道如何将“id”发布到控制器功能.请看我的代码
//post this integet
the_id = $(this).attr('id'); 

        $.ajax({
            type: "POST",data: the_id,url: "http://localhost/test/index.PHP/data/count_votes",success: function(){
                //the controller function count_votes returns an integer.
                //echo that with the fade in here.

                }
            });
$.ajax({
            type: "POST",data: {data:the_id},success: function(data){
               //data will contain the vote count echoed by the controller i.e.  
                 "yourVoteCount"
              //then append the result where ever you want like
              $("span#votes_number").html(data); //data will be containing the vote count which you have echoed from the controller

                }
            });

在控制器中

$data = $_POST['data'];  //$data will contain the_id
//do some processing
echo "yourVoteCount";

澄清

我觉得你很困惑

{data:the_id}

success:function(data){

为了您自己的清晰度,两个数据都是不同的,您可以将其修改

success:function(vote_count){
$(span#someId).html(vote_count);
原文链接:https://www.f2er.com/ajax/160034.html

猜你在找的Ajax相关文章