有没有更好的方法来创建动态 rails 路径?

Is there a better way to create a dynamic rails path?

在 Rails 中使用恶人 gem 是否有更好的方法来做到这一点?

def finish_wizard_path
  public_send("#{controller_name}_path", current_user.try(controller_name.intern).id)
end

这可以通过使用url_for方法来完成

url_for(controller: controller_name, action: :new, id: current_user.id)