提问人:Mooventhan 提问时间:11/15/2023 更新时间:11/17/2023 访问量:71
对于has_and_belongs_to_many表名应为单数或复数
for has_and_belongs_to_many table name should be in singular or plural
问:
因为我们肯定会使用复数
因为我们将使用单数
例如:has_many
belongs_to
has_many :users
belongs_to: user
但对于这里来说,它应该是或has_and_belongs_to_many
has_and_belongs_to_many :user, join_table: :blocked_contacts
user
users
答:
2赞
darkinSyde
11/15/2023
#1
它应该是 ,因为它是多对多的关系。您可以在此处找到更多信息。has_and_belongs_to_many :users
评论