前提・実現したいこと
現在、railsにて顧客管理のアプリを作成しているのですが、
ヘッダーにあるボタンから、指定のshowへ遷移したいのですが、うまくいきません。
何卒、よろしくお願いいたします
該当のソースコード
application.html.erb
html
1 </div> 2 </div> 3 <%= link_to "searches/1", class: "navbar-item" do %> 4 <h1 class="title is-2" style="font-family: cursive;">TimeChat</h1> 5 </div> 6 <% end %>
rutes
search_searches_path GET /searches/search(.:format) searches#search GET /searches(.:format) searches#index POST /searches(.:format) searches#create new_search_path GET /searches/new(.:format) searches#new edit_search_path GET /searches/:id/edit(.:format) searches#edit search_path GET /searches/:id(.:format) searches#show PATCH /searches/:id(.:format) searches#update PUT /searches/:id(.:format) searches#update DELETE /searches/:id(.:format) searches#destroy
試したこと
以前までは= link_to "http://localhost:3000/searches/1",と記述していましたが、ローカル環境外だと使用できないので、= link_to "searches/1"と記述しました。この記述だと、/attendances/newなどから遷移しようとすると、/attendances/searches/1となってしまいます。
補足情報(FW/ツールのバージョンなど)
ruby '2.6.5'
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。