Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一个检查应用程序。在我的检查模型中有很多图像,每个图像都有评论和位置地址。因为我是 Rails 新手,不太了解如何实现这一点。样本所需的输出是图像 您还有什么需要知道或从我这里看到的吗?
DefectPhoto您可以像这样创建单独的模型
DefectPhoto
class DefectPhoto < ApplicationRecord has_one_attached :image end
并像这样添加到defect_photos列address和comments迁移中
defect_photos
address
comments
create_table :defect_photos do |t| t.string :address t.string :comments t.timestamps end
如果需要与其他模型进行关联