Method: ActiveStorage::Attached::One#attach
- Defined in:
- activestorage/lib/active_storage/attached/one.rb
#attach(attachable) ⇒ Object
Attaches an attachable
to the record.
If the record is persisted and unchanged, the attachment is saved to the database immediately. Otherwise, it’ll be saved to the DB when the record is next saved.
person.avatar.attach(params[:avatar]) # ActionDispatch::Http::UploadedFile object
person.avatar.attach(params[:signed_blob_id]) # Signed reference to blob from direct upload
person.avatar.attach(io: File.open("/path/to/face.jpg"), filename: "face.jpg", content_type: "image/jpeg")
person.avatar.attach(avatar_blob) # ActiveStorage::Blob object
58 59 60 61 62 63 64 |
# File 'activestorage/lib/active_storage/attached/one.rb', line 58 def attach(attachable) record.public_send("#{name}=", attachable) if record.persisted? && !record.changed? return if !record.save end record.public_send("#{name}") end |