骨干模型保存
我正在使用 Rails 并学习 Backbone。
请帮助我。有什么方法可以在保存时设置正确的模型吗?例如,当我创建带有一些参数的新用户并尝试将其保存到数据库中时,-在服务器端,我没有将用户作为对象,而是将用户字段保存在参数中。保存用户的唯一方法是手动设置属性:
user = User.new(:login => params[:login], :password => params[:password]).save!
是否有任何方法可以生成真实的用户模型对象(如 form_for 生成)? 我认为当我更新用户等时我需要使用下面描述的操作。
谢谢!
I'm using rails and learning Backbone.
Help me please. Is there any way to set right model on save? When I create, for example, new user with some params and trying save it into the database, - on server side I have not user as object, but user fields in params. And only way to save user - is to set properties manually:
user = User.new(:login => params[:login], :password => params[:password]).save!
Is there any way which will generate real user model object (like a form_for generates)?
I think actions described below I will need to use when I will update user and so on.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
'paramRoot' 参数由backbone-rails gem 提供的backbone_rails_sync 适配器使用。这就是为什么你在backbone的网站上找不到它。
另一种方法是,如果您不使用 gem 及其适配器,则可以使用 :root => 来呈现用户。错误的
The 'paramRoot' parameter is used by the backbone_rails_sync adapter that backbone-rails gem provides. That's why you can't find it in backbone's website.
Another way, if you are not using the gem and it's adapter, is to render the user with :root => false
有一个 paramRoot '参数'。你说rails - 所以我假设咖啡脚本:
There is a paramRoot 'parameter'. You say rails - so I'll assume coffee script: