Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
モデルを作成しましPostsたが、モデルの保存または更新時にフラッシュ通知テキストを変更したいと考えています。
Posts
どうすればそれができますか?ありがとうございました!
Postメソッドを呼び出すコントローラーアクションでこれを行います。
Post
class FooController < ApplicationController def create if Post.create(params) flash.notice 'Post saved' else flash.alert 'Post not saved' end end end
モデルをコントローラーや などのコントローラー メソッドから分離しておき、flash代わりにそれらをコントローラーに設定することをお勧めします。
flash