我正在创建一个站点,您将音乐数据发送到服务器,它会保存它并为您提供独特的“闪存”。我想将歌曲数据自引用到闪存。但是我需要flash_id
歌曲表中的一个字段,但是因为我想为同一首歌曲输入一个歌曲条目,所以这不起作用(我想计算这首歌被“闪烁”了多少次)
每个 Flash 就像一条推文或帖子。它连接到用户
谢谢
歌曲模型
class Song < ActiveRecord::Base
belongs_to :flash
end
闪光模型
class Flash < ActiveRecord::Base
belongs_to :user
has_one :song
end