답변:
rake routes
또는
bundle exec rake routes
RAILS_ENV=dev /opt/rbenv/shims/bundle rake routes
이것을 작동시키기 위해 사용해야 했다.
나중에 http : // localhost : 3000 / rails / info / routes 로 이동하여 모든 경로를 볼 수있는 공식적인 방법이 있음을 알게되었습니다 . 공식 문서 : https://guides.rubyonrails.org/routing.html#listing-existing-routes
비록 늦을 수도 있지만 모든 경로를 표시하는 오류 페이지가 마음에 듭니다. 나는 보통 /routes
브라우저에서 직접 경로를 보려고 합니다. Rails 서버는 자동으로 라우팅 오류 페이지와 정의 된 모든 경로 및 경로를 제공합니다. 그것은 매우 도움이되었습니다 :)
따라서 http : // localhost : 3000 / routes 로 이동 하십시오.
하나 더 해결책은
Rails.application.routes.routes
http://hackingoff.com/blog/generate-rails-sitemap-from-routes/
Rails.application.routes.routes.map { |r| {alias: r.name, path: r.path.spec.to_s, controller: r.defaults[:controller], action: r.defaults[:action]}}