I am using jquery's ajax method to post some data to the server and get back the response. Though the server side php code is returning a json encoded string/array, the response is coming back as null.

Could someone point out the mistake that I am making. Below if my jquery ajax method using which I am hitting the postData.php page.

        $.ajax({
            url:'postData.php',
            type:'POST',
            data:data,
            dataType: "json",
            success: function(response){
                console.log(response);
            }
        });

The content in postData.php is pretty straight forward as I am still developing it.

    $data = array();
//inside postData.php
    $data['test']=1;
    return json_encode($data);

It should return a json string, but it is returning null. I also tried echoing a string just after $data array declaration, it does echo it in the firebug, but the response is when I do a console.log on the success callback, it comes back as null.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Is that all that is in postData.php? You need to write it out to the buffer (echo json_encode($data);) at some point.

link|improve this answer
thank you!! I have used jquery and ajax for quite a bit, and in the hurry of getting things done quickly, I made this funny mistake!! – macha May 23 '11 at 1:00
feedback

For getting the result back in your ajax function, you must echo it, not return, like:

$data = array();
$data['test']=1;
echo json_encode($data);
link|improve this answer
thank you!! I have used jquery and ajax for quite a bit, and in the hurry of getting things done quickly, I made this funny mistake!! – macha May 23 '11 at 1:00
feedback

Like morgar pointed it out, you should echo the data back and not use return.

$data = array();
$data['test']=1;
echo json_encode($data); //echo instead of return

At the same time, in your ajax on success function, you should access the response like an array.

**Incorrect**
console.log(response); //--> would return an error

**Should Be**
console.log(response[0]); //--> read the returned first array element
link|improve this answer
Why would that be an error? He's just console.log()'ing an array. – John Green - PageSpike May 23 '11 at 2:15
@John Green - PageSpike : Hmm, I would think it would caused an error because if he has 2 elements in the array, to get the value it would be response[0] and response[1]? Am I wrong about this? – mmk May 26 '11 at 2:43
That is called a sparse array, generally. It is legal to do this. – John Green - PageSpike May 26 '11 at 5:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.