标签: ruby-on-rails ruby
我有用户模型和公司模型。公司has_many :users和用户belongs_to :company
has_many :users
belongs_to :company
在2个不同的页面中,我列出了用户。一个页面是所有用户,另一个页面是公司个人资料页面,用户属于该公司。
当我删除普通用户时,会自然调用destroy方法,并在某处删除其redirect_to后。但我想留下我所在的页面。
destroy
redirect_to
我该怎么做?
答案 0 :(得分:1)
使用:
redirect_to :back
在你的摧毁行动中。