Skip to content

Instantly share code, notes, and snippets.

@mattparlane
Created March 25, 2014 06:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattparlane/9756123 to your computer and use it in GitHub Desktop.
Save mattparlane/9756123 to your computer and use it in GitHub Desktop.
done() handler not firing for DELETE request when Content-Type header is set
require 'sinatra'
get '/' do
'
<script src=//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.js></script>
<script>
$(function() {
$("a").click(function() {
var url = $(this).data("url");
$.ajax({
type: "delete",
url: url,
})
.done(function() {
console.log("win");
})
.fail(function() {
console.log("fail");
});
return false;
});
});
</script>
<body>
<a href=# data-url="/fail">fail</a>
<a href=# data-url="/win">win</a>
</body>
'
end
delete '/fail' do
[200, {'Content-Type' => 'application/json'}, '']
end
delete '/win' do
# either of these work:
[204, {'Content-Type' => 'application/json'}, '']
[200, {}, '']
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment