SlideShare a Scribd company logo
Wolfram Arnold www.rubyfocus.biz Nested Attributes CRUD on multiple models without  crud
Associations class Pirate < ActiveRecord::Base has_one :ship end class Ship < ActiveRecord::Base belongs_to :pirate end
User Interface? Form with pirate and ship fields form_for :pirate do |pf|   pf.text_field :catchphrase pf.fields_for :ship do |sf| sf.text_field :name end # params[pirate][ship] # Note: broken! end
Controller Interface? def create @pirate = Pirate.new(params[:pirate]) @ship = Ship.new(params[:pirate][:ship]) @ship.pirate = @pirate if @pirate.save  && @ship.save   ... else # what about rollback? end end
Demo
Fat model/skinny controller Logic in the model, not views/controllers Assignments class Pirate < ActiveRecord::Base def ship_attributes=(attrs) ... end end Validations handled in model, incl. child models
Saving—when? :autosave => true  flag, new in Rails 2.3! Automatically turned on for  accepts_nested_attributes_for Parent will save all children New parent, modified children Existing parent, new/modified children As a transaction—rollback on validation failure Cascaded error messages Removes a lot of confusion Demo
Web Service API PirateController  and  ShipController? Not advised if Objects have a relationship, e.g. has_one association Dependencies Business logic rules/validations Better single API with nested attributes Simpler client code Less network traffic
References http://api.rubyonrails.org/classes/ActiveRecord/NestedAttributes/ClassMethods.html#M002132 http://github.com/h-lame/parental_control http://railscasts.com/episodes/75-complex-forms-part-3 Advanced Rails Recipes, Pragmatic Programmer Series
Wolfram Arnold www.rubyfocus.biz Thank you!

More Related Content

PDF
Ruby Programming Introduction
PPTX
RJB - another choice for Ruby and Java interoperability
PDF
Ruby Presentation
PDF
bol.com Partner event 2013 - Presentatie Wienke Giezeman
KEY
Intro to java
PDF
Code rippa
PDF
Ruby Presentation - Beamer
PDF
RubyMotion: Under the Hood
Ruby Programming Introduction
RJB - another choice for Ruby and Java interoperability
Ruby Presentation
bol.com Partner event 2013 - Presentatie Wienke Giezeman
Intro to java
Code rippa
Ruby Presentation - Beamer
RubyMotion: Under the Hood

What's hot (11)

PDF
Advanced JavaScript build pipelines using Gulp.js
PDF
App Lego
KEY
End to-End CoffeeScript
KEY
CoffeeScript presentation
PDF
Plumbin Pipelines - A Gulp.js workshop
PDF
Jruby a Pi and a database
PDF
Ruby.new @ VilniusRB
PDF
RubyConf Portugal 2014 - Why ruby must go!
PDF
Developing cross platform desktop application with Ruby
PDF
Happy Programming with CoffeeScript
PDF
Swift language - A fast overview of some features
Advanced JavaScript build pipelines using Gulp.js
App Lego
End to-End CoffeeScript
CoffeeScript presentation
Plumbin Pipelines - A Gulp.js workshop
Jruby a Pi and a database
Ruby.new @ VilniusRB
RubyConf Portugal 2014 - Why ruby must go!
Developing cross platform desktop application with Ruby
Happy Programming with CoffeeScript
Swift language - A fast overview of some features
Ad

Viewers also liked (8)

PDF
Cache Money Talk: Practical Application
PDF
Paraiso Bay floor plans
PDF
2011-02-03 LA RubyConf Rails3 TDD Workshop
PDF
Axis Brickell Floor Plans
PDF
Consuming REST services with ActiveResource
PDF
2010-07-19_rails_tdd_week1
ODP
2010 07-20 TDD with ActiveResource
ODP
Acts As Most Popular
Cache Money Talk: Practical Application
Paraiso Bay floor plans
2011-02-03 LA RubyConf Rails3 TDD Workshop
Axis Brickell Floor Plans
Consuming REST services with ActiveResource
2010-07-19_rails_tdd_week1
2010 07-20 TDD with ActiveResource
Acts As Most Popular
Ad

Similar to 2009 07 21: Nested Attributes (11)

KEY
Working Effectively With Legacy Code
ODP
Fixture Replacement Plugins
PPT
Intro to Rails ActiveRecord
PPT
Defense Against the Dark Arts: Protecting Your Data from ORMs
ODP
Ruby on rails
PPT
Multi-tenancy with Rails
PDF
Ruby on Rails na Unip
PDF
Implementation of EAV pattern for ActiveRecord models
PPT
Boston Computing Review - Ruby on Rails
PPTX
A cool, clear drink of Ruby object persistence
PDF
Rails 2.3 and Rack - NHRuby Feb 2009
Working Effectively With Legacy Code
Fixture Replacement Plugins
Intro to Rails ActiveRecord
Defense Against the Dark Arts: Protecting Your Data from ORMs
Ruby on rails
Multi-tenancy with Rails
Ruby on Rails na Unip
Implementation of EAV pattern for ActiveRecord models
Boston Computing Review - Ruby on Rails
A cool, clear drink of Ruby object persistence
Rails 2.3 and Rack - NHRuby Feb 2009

Recently uploaded (20)

PDF
Machine learning based COVID-19 study performance prediction
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
Spectroscopy.pptx food analysis technology
PPTX
Cloud computing and distributed systems.
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
NewMind AI Weekly Chronicles - August'25 Week I
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
KodekX | Application Modernization Development
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Machine learning based COVID-19 study performance prediction
MIND Revenue Release Quarter 2 2025 Press Release
The Rise and Fall of 3GPP – Time for a Sabbatical?
Network Security Unit 5.pdf for BCA BBA.
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Spectroscopy.pptx food analysis technology
Cloud computing and distributed systems.
Programs and apps: productivity, graphics, security and other tools
NewMind AI Weekly Chronicles - August'25 Week I
The AUB Centre for AI in Media Proposal.docx
Reach Out and Touch Someone: Haptics and Empathic Computing
Spectral efficient network and resource selection model in 5G networks
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Unlocking AI with Model Context Protocol (MCP)
Diabetes mellitus diagnosis method based random forest with bat algorithm
KodekX | Application Modernization Development
Advanced methodologies resolving dimensionality complications for autism neur...
Dropbox Q2 2025 Financial Results & Investor Presentation
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy

2009 07 21: Nested Attributes