0
0

More than 3 years have passed since last update.

errors.full_messagesの配列を文字に変えて出力する

Posted at

起こった問題とやりたいこと

errors.full_messagesが配列なので、flashメッセージが、["hoge hoge"]が出力される
→ 文字に変えて、hogehogeと出力したい

やったこと

errors.full_messagesにto_sentenceメソッドをつけるだけ

user_contorller.rb
class Users::UserController < Users::ApplicationController
#中略

def update
 @user = user.Users
flash[:alert] = @user.errors.full_messages.to_sentence
 end

#中略
end

今日もお疲れ様でした。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0