I have a Game model and I want to mass assign on create:

def create
game = Game.new(params[:game])
...
end

But Backbone sends model attributes without wrapping them in 'game' param, and I have to do this:

def create
game = Game.new(:title=>params[:title], ... )
...
end

I want my controller clean, how to use mass assignment with Backbone.js?

link|improve this question

For security reasons, your rails controller should only accept those fields that it expects. What if someone sends a JSON object attribute that doesn't exist? – Andrew De Andrade Feb 23 '11 at 23:04
I have solved this issue with monkey patching toJSON() during sync() call only. Check my solution implemented in CoffeeScript here: gist.github.com/1128000 – jumski Aug 5 '11 at 17:35
feedback

2 Answers

up vote 8 down vote accepted

Answer From Backbone creator: http://www.quora.com/How-well-does-backbone-js-work-with-rails

link|improve this answer
feedback

This might help you from what I understand: https://gist.github.com/719080 (Not my code, gist by @trydionel).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.