从文档中,下面的编辑和更新路径将类似于/ comments /:id
resources :articles do
resources :comments, shallow: true
end
当我更新评论时,它不了解文章时,如何返回评论索引?在这种情况下,您是否会回到商品索引?
使用浅层嵌套更新注释后,是否有可以解决的方法来返回注释列表?
更新 我的模型使用has_and_belongs_to_many关联,因此无法执行@ comment.article来获取父级。
我的模特
class Venue < ApplicationRecord
has_and_belongs_to_many :users
end
class User < ApplicationRecord
has_and_belongs_to_many :venues
end
我的路线
resources :venues do
resources :accounts, shallow: true
end