0

尝试进行 ajax 调用并在phpfox中获得响应。

JS:

 $.ajaxCall('module.check_whether_first_time',
 'u_id='+u_id+'&my_user_id='+my_user_id).done(function(data) {

        alert(" data  = " + data  )
    });

ajax 从 ajax.class.php 调用的函数:

    public function check_whether_first_time(){

            $u_id = $this->get('u_id');
            $my_user_id=$this->get('my_user_id');

            // processing with data goes here

            $counter=1;         
            echo $counter;


    }// end of function check_whether_first_time

我想获得$counterindata变量的值。该代码不起作用,但 FireBug 显示 ajax 请求,但没有返回结果作为响应。方法是什么?

4

2 回答 2

0
{literal}
<script>
function check(u_id,my_user_id)
{
    $.ajaxCall('user.check_whether_first_time','u_id='+u_id+'&my_user_id='+my_user_id).done(function(data)
    {
        alert(" data  = " + data)
    });
}
</script>
{/literal}
<a href="javascript:void();" onclick="check('12','123');">click</a>

我使用这个函数,它会在数据变量中返回我的输出

用户模块中的ajax函数

public function check_whether_first_time(){

            $u_id = $this->get('u_id');
            $my_user_id=$this->get('my_user_id');
            $counter=10;         
            echo $counter.$u_id;
}
于 2013-12-05T05:31:52.460 回答
0
$.ajaxCall('organization.getUsersbyid', 'id=' +id+ '&ids=' +ids  +'&idss=' +idss +'&idsss=' +idsss );

public function getUsersbyid() {

    $id=$this->get('id');
    $join=1;

    $ids=$this->get('ids');
    $idss=$this->get('idss');
    $idsss=$this->get('idsss');
    $add = Phpfox::getService('organization.process')->getUsersbyid($id,$ids,$join,$idss,$idsss);

}    
于 2014-03-15T12:16:01.993 回答