前提・実現したいこと
アプリ作りを始めたところで、とりあえず以下の流れでファイルを作成しコード記述しましたが、ローカル環境でビューを見ようとしてもエラーメッセージが出てしまうため解消したい。
(作業の流れ)
アプリファイル作成(rails new)
データベース作成(rails db:create)
html 記述、コントローラ作成・記述、ルーティング記述(記述画面はリンク参照)
ローカル環境接続(rails s)
↓
ブラウザ確認するもエラー画面
発生している問題・エラーメッセージ
No template for interactive request
ToppagesController#index is missing a template for request formats: text/html
NOTE!
Unless told otherwise, Rails expects an action to render a template with the same name,
contained in a folder named after its controller. If this controller is an API responding with 204 (No Content),
which does not require a template, then this error will occur when trying to access it via browser,
since we expect an HTML template to be rendered for such requests. If that's the case, carry on.
### 該当のソースコード ```ruby 下記にコードを添付しています。
試したこと
ルーティング、コントローラ、hamlファイルそれぞれの記述見直し
*記述画面をそれぞれリンクで添付しています。
補足情報(FW/ツールのバージョンなど)
routes.rb
1 2Rails.application.routes.draw do 3 resources :toppages, only: :index 4 root "toppages#index" 5end
toppages.controller.rb
1 2Rails.application.routes.draw do 3 resources :toppages, only: :index 4 root "toppages#index" 5end
index.html.haml
1 2.wrapper 3 = render 'toppages/toppage-header' 4 = render 'toppages/toppage-main' 5 = render 'toppages/toppage-footer'
_toppage
1.wrapper 2 %header.header-wrapper 3 .header-top 4 .header-top__header 5 .header-top__title 6 Taiga Mclean 7 .header-top__menu 8 .header-top__profile 9 Profile 10 .header-top__discography 11 Discography 12 .header-top__live 13 Live 14 .header-top__message 15 Message
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/24 08:02