Browse Source

Problem sending parameters via POST

Jquery seems to fail posting data as POST params if contentType is overwritten. At least in chrome
bubble
Артём Курапов 12 years ago
parent
commit
4ebfd081c0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/coffeescript/view/OperationView.coffee

+ 1
- 1
src/main/coffeescript/view/OperationView.coffee View File

@@ -78,7 +78,7 @@ class OperationView extends Backbone.View
complete: (data) => complete: (data) =>
@showCompleteStatus(data) @showCompleteStatus(data)


obj.contentType = "application/json" if (obj.type.toLowerCase() == "post" or obj.type.toLowerCase() == "put" or obj.type.toLowerCase() == "patch")
obj.contentType = "application/json" if (obj.type.toLowerCase() == "put" or obj.type.toLowerCase() == "patch")
jQuery.ajax(obj) jQuery.ajax(obj)
false false


Loading…
Cancel
Save