I've been able to hack around the ember-data RESTAdapter and make it work for my django web app using the djangorestframework. It's clearly a different flavor of REST from what Rails has implemented.
I'm extending the original DS.RESTAdapter to work with the django approach and I'm curious how I can take the "record" that they typically turn into JSON and instead make a basic query dict of "foo=bar&baz="
Here is what i've done so far that does work -I'd just like a less hard coded approach
DS.RESTAdapter = DS.Adapter.extend({
bulkCommit: false,
createRecord: function(store, type, record) {
var root = this.rootForType(type);
//var data = {};
//data[root] = record.toJSON();
var data = 'username=%@'.fmt(record.get('username'))
...