класс ActiveStorage::Attached::One
Представление одного вложения к модели.
Публичные методы экземпляра
# File activestorage/lib/active_storage/attached/one.rb, line 22
def attach(attachable)
blob_was = blob if attached?
blob = create_blob_from(attachable)
unless blob == blob_was
transaction do
detach
write_attachment build_attachment(blob: blob)
end
blob_was.purge_later if blob_was && dependent == :purge_later
end
end Связывает заданное вложение с текущей записью, сохраняя его в базе данных.
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/jpg")
person.avatar.attach(avatar_blob) # ActiveStorage::Blob object
# File activestorage/lib/active_storage/attached/one.rb, line 43 def attached? attachment.present? end
Возвращает true , если вложение было создано.
class User < ActiveRecord::Base has_one_attached :avatar end User.new.avatar.attached? # => false
# File activestorage/lib/active_storage/attached/one.rb, line 12
def attachment
record.public_send("#{name}_attachment")
end Возвращает связанную запись вложения.
Вам не нужно вызывать этот метод для доступа к методам вложения, так как они все доступны на уровне модели.
# File activestorage/lib/active_storage/attached/one.rb, line 48
def detach
if attached?
attachment.destroy
write_attachment nil
end
end Удаляет вложение без очистки, оставляя его blob на месте.
# File activestorage/lib/active_storage/attached/one.rb, line 57
def purge
if attached?
attachment.purge
write_attachment nil
end
end Непосредственно очищает вложение (т.е. уничтожает blob и вложение, удаляет файл на сервере).
# File activestorage/lib/active_storage/attached/one.rb, line 65
def purge_later
if attached?
attachment.purge_later
end
end Очищает вложение через систему очереди.
© 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.