Tagged Questions
0
votes
1answer
248 views
Display information from Backbone.js related objects
What is the best way to display information from related objects on my Backbone.js wired front-end when on the backend these attributes are stored on separate Django models in a PostgreSQL database?
...
2
votes
1answer
479 views
How do I load sub-models with a foreign key relationship in Backbone.js?
Sorry if this is a bit convoluted... I am still learning Backbone.js...
What is the proper way to load & save Backbone models that have sub-models within themselves? (And should I even be having ...
0
votes
0answers
214 views
Backbone-relational cannot use 'in' operator to search for 'id'
I'm using Backbone-relational, and i have these two models :
var Song = Backbone.RelationalModel.extend({
urlRoot: 'http://127.0.0.1:8000/api/v1/song',
idAttribute: 'id',
initialize: ...
4
votes
0answers
686 views
Backbone-Relational and Django-Tastypie: many-to-many fields operating example
May somebody provide an example of operating with many-to-many fields of django.db models' instances through django-tastypie and backbone-relational? That's possible now with using intermediate model.
...