Я следовал всем инструкциям и ответам, и все отображается правильно, но фактическая загрузка не происходит: (
Вот в моем ActiveAdmin:
form :html => { :enctype => "multipart/form-data" } do |f|
f.inputs do
f.input :name
f.input :image, :multipart => true
end
end
Вот в моей модели:
has_attached_file :image, :styles => { :medium => "300x300>", :thumb => "100x100>" }, :path => ":rails_root/app/assets/images/article_images/:id/:style_:basename.:extension"
Я пробовал и без пути, не сработало.
Вот моя миграция:
class AddAttachmentImageToArticle < ActiveRecord::Migration
def self.up
add_column :articles, :image_file_name, :string
add_column :articles, :image_content_type, :string
add_column :articles, :image_file_size, :integer
add_column :articles, :image_updated_at, :datetime
end
def self.down
remove_column :articles, :image_file_name
remove_column :articles, :image_content_type
remove_column :articles, :image_file_size
remove_column :articles, :image_updated_at
end
end