我正在学习 ruby on rails(4.2 版)。我正在疯狂地进行网络商务。我必须制作一个灵感页面,其中将包含描述(全球化系统)、视频链接、published_on 和多个图像。我不去使用回形针/载波宝石或其他宝石。
我想使用大礼包产品图片上传系统。我制作了一个灵感模型和 Inspiration_images 模型。
灵感.rb
class Inspiration < ActiveRecord::Base
validates :video_link, presence: true # validation for video attributes
# attributes for description field with globalize
translates :description
globalize_accessors locales: [:en, :de, :fr], attributes: [:description]
# iamges
has_many :images, -> { order(:position) }, as: :viewable, dependent: :destroy, class_name: "Spree::Image"
# scopes for inspiration
scope :publishable, -> { where('published_on <= ?', Time.zone.today) }
end
灵感_images.rb:
class InspirationImage < ActiveRecord::Base
belongs_to :inspiration
end
但是现在,如何制作有关使用此模型的表单和控制器(创建方法)?我想让它像 Spree Image 上传系统一样。请帮我。