Closed
Description
Hi! Having a bit of a problem here
@_req = $.ajax(
url: app.api('suggest', place)
dataType: 'json'
success: _.bind(@renderSuggest, @)
error: _.bind(@clearSuggest, @)
)
works when
@_req = $.ajax(
url: app.api('suggest', place)
success: _.bind(@renderSuggest, @)
error: _.bind(@clearSuggest, @)
)
doesnt. Server headers are fine, getting unparsed string response from the server anyway.
Tried this as a workaround:
app.dom.doc.on('ajaxBeforeSend', (e, xhr, options)->
options.dataType = 'json' unless options.dataType
)
Doesnt work either. options already have dataType == 'json'
Metadata
Metadata
Assignees
Labels
No labels