私はRubyonRailsを初めて使用しますが、簡単な操作で夢中になります
コントローラからビューに変数を渡します
しかし、私が私のようなすべての質問を読んだという見方では、それはゼロですが、それらのどれも解決策ではありませんでした
私はというメソッドを持っていますnews_read
def news_read
@name = "Come On "
end
そして、右の 関連ビュー(news_read.html.erb)
で私はこれを試します
<%= @name.inspect %>
しかし、ブラウザの値は
nil
3時間前に問題が発生し、まったく機能していません
どんな助けでもありがたいです
編集
何かをログに記録しようとしましたが、呼び出されていないため、ルートは次のようになります。
get "main/news_read"
get "main/index"
root :to => 'main#index', :as => 'main'
resources :categories
resources :testimonials
resources :news
resources :products
resources :teams
resources :abouts
resources :main
resources :header_titles