This is not really an issue, because the code works, but I am just curious as to why it happens.

I have the following jQuery code for an ajax post:

$.post('./add_fee_row/<?php echo $date; ?>',post, function(data){ ... });

It all works fine and dandy.

However in the Chrome Console it says: what is going on here?

Why does it say cancelled?

Everything happened as if the post was successful. Why does it say that?

(the php server code is available if needed)

I am using Google Chrome version: 17.0.942.0

link|improve this question

When I was working with some calls to a Sinatra web service a while back I got the same issue and never figured it out, so I'm curious too. – Chad Nov 28 '11 at 21:30
1  
Seems to be yet another great update from our friends @ chromium. I started to get those cancelled messages too. Also when using jQuery. Finally got rid of those annoying deprecated ( stackoverflow.com/questions/7825448/… ) messages and now this :P – RepWhoringPeeHaa Nov 28 '11 at 21:32
@PeeHaa naaah i still have the deprecated messages.... – Neal Nov 28 '11 at 21:33
@Neal: I upgraded to 1.7 and before that I fixed it by removing the culprits. – RepWhoringPeeHaa Nov 28 '11 at 21:34
feedback

2 Answers

up vote 1 down vote accepted

There was a bug in Chrome DevTools, it is already fixed: http://code.google.com/p/chromium/issues/detail?id=104920

link|improve this answer
feedback

it may happen when Chrome sees that the actual data doesn’t match the headers.

If you return your answer with header type added, it shouldnt say canceled (Content-type: text/plain. for example)

You can check them by looking Event tabs - response headers.

link|improve this answer
My code specifically has a header type: header('Content-type: application/json'); – Neal Nov 30 '11 at 13:52
feedback

Your Answer

 
or
required, but never shown

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