Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My PHP side sends reponse to ajax like that

$data = array(
            'status' => $status,
            'message' => $message
    );
    echo json_encode($data);

My ajax looks like that

$.ajax({
               url: formUrl,
               type: formMethod,
               dataType: "json",
               data: formData,
               success: function (data) {
                  //setup variables
                  var responseData = jQuery.parseJSON(data), cl, text;

                  //response conditional
                  switch (responseData.status) {
                  case 'error':
                     cl = 'error';
                     text = responseData.message;
                     break;
                  case 'success':
                     cl = 'success';
                     text = 'Qeydiyyat uğurla başa çatdı';
                     break;
                  }

                  $.notifyBar({
                     cls: cl,
                     html: text
                  });

               }
            });

Getting responseData is null error message. But (from firebug XHR) I see that php actually echoes result. What could be the reason?

share|improve this question
declaring variables cl, text, responseData = jQuery.parseJSON(data). I dunno what does jQuery.parseJSON. – heron Nov 11 '11 at 1:25
1  
You do not need parseJSON, because it will already be ready to be parsed, if you do alert(data.status) it will work (remove the parseJSON first). – Burning the Codeigniter Nov 11 '11 at 1:30

1 Answer

up vote 2 down vote accepted

I believe jQuery is smart enough to parse the response JSON for you such that the data parameter passed to your callback has already been parsed. So you can just access data.status, etc. directly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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